Our project uses multiple overviews defined using the overview models. We want to optimize the width of our columns. The first and last columns of the table contain values with predefined widths and can be defined with a static value. So we defined their width and set the “Fixed Width” property to true. We also have columns that contain long string entries that can vary in size,
so we left the fixed width property to false and just configured a minimum width. Our expectation, based on the documentation, was that the center columns would take the space available either based on the ratio of the configured minimum width, or based on the length of the strings in the cells and that on window resize the width would shrink up to minimum width before the horizontal scrolling starts, but in fact, the center columns stays fixed and does not vary in width.
How can we make the width of our columns responsive ?