APEX Interactive Grid column width - oracle-apex

I have an Interactive Grid with a lot of columns and APEX fits them all on the screen making them way to small to be useful.
How can I give them a default width and make them go off the screen with a scroll bar?
Changing the Width parameter for a column in the Appearance secion has no visual effect.
I'm using APEX 5.1

You need to set the Minimum Column Width property for each column in the Interactive Grid's Actions menu:
Once done, you can use Actions>Report>Save to save these settings permanently. The result (I just did this for 2 columns):

Related

Add an option for the user to edit the legend on Map Box in Power Bi

In the Map Box app on Power Bi app there is an option for a Legend but unfortunately the legend can't be edited showing legend. As a user, I would like to have the option to edit the legend by changing the number of entries from 6 measures to a number specified by the user, change the background of the legend, change the font color, size and type.
Is this possible to add these edits for users?
At the moment, there is no ability to customize the legend with the Mapbox visual for Power BI, however, in future updates, you will be able to change the font color and size, as well as position the legend at the top, bottom, left, or right of the visual.

In Oracle APEX 5.1, is it possible to adjust the width of an interactive grid?

The application builder consistently sizes interactive grids about 10 characters wider than the screen. So the final column is always cut off, even if there is only a few columns. I've found I can set the minimum width of a column, so I've been setting the last column very wide so that the value in the column will be visible, but there must be a better way? How is Apex determining the width of the interactive grid?
When you run the page:
click the "Actions" button
choose "Columns"
set "Minimum column width (pixel)" for each column

Align mfc controls

I want to create a dialog where every box is the same size and has the same margin between each other. Is it possible to do this in the editor or do I have to go to the code behind?
As you can see on the image there is different spacing between the controls.(I am using VS 2010 if that matters)
You should use the Dialog Editor tools to do that. That's what they're there for.
Select the first column of controls and choose "Space Evenly Down" either from from (a) the Format menu or (b) the Dialog Editor toolbar.
For the second column you can either do the same, or as I prefer, for each row select the two controls and use the "Align Bottoms" tool to make sure both columns are vertically aligned.
See the MSDN page on this sort of thing.

How do I add a separator in a grid in wxPython?

I've been trying to add separator lines between rows in my grid. I tried using wx.Menu() with the AppendSeparator() method, however the wx grid can't add objects of type Menu. Is there any other way?
This is not supported by the grid widget. You could size a column or row such that it is skinnier than usual and change all the cells in that row or column to have a different background color. You might also be able to utilize a custom label renderer or cell renderer. See the wxPython demo for examples.

QTableWidget show scroll bar

I would like the horizontal scroll bar to appear whenever there is text eliding. Such that the user won't have to resize the whole GUI. How would I do this?
This is what I have coded:
ui->tableWidget->horizontalHeader()->setStretchLastSection(true);
ui->tableWidget->horizontalHeader()->setSectionResizeMode(1,QHeaderView::Stretch);
ui->tableWidget->resizeColumnsToContents();
I also tried enabling scrollbar to appear always, but scrolling to the very right doesn't do anything.
If I set textElideMode to ElideNone , the text from the 2nd column is partially hidden and no scrollbar appears.
QHeaderView::Stretch will stretch the column width to the available space. Use QHeaderView::ResizeToContents to make the column wide enough to display the content, resulting in a horizontal scroll bar if necessary.
This will have a couple of side effects of which I'm not sure you want them.
There will probably be no more ellipsis in the elided text.
If all of the values in your Hash column are very small, then that column will be very thin, so there might be 'empty' space next to that column.