I have the following code running where myGridExample is a Vaadin 8 grid object.
this.myGridExample
.addColumn(MapQueryService.RowResult::getFacilityType)
.setMinimumWidth(130)
.setWidth(160)
.setMaximumWidth(170)
.setCaption("Facility Type");
The setMaximumWidth(170) does not appear to do anything. however .setMinimumWidth(130) works as expected. Is this a bug?