Is there a way to avoid the rescaling of the height of the rows of a horizontal Bar chart using Oracle Jet in APEX?
For instance a Chart with 10 rows looks fine:

But a chart with 3 rows shows too much space between the bars:

I have set the bar width to a fixed value using:
function( options ) //takes options
{
options.styleDefaults.barGapRatio = 0; //gap between bars
options.styleDefaults.maxBarWidth = 25;
return options; //return set options
}
The height for the chart region is also fixed. If I leave the height of the chart empty, it will be set to a default size and this doesn't help.
The APEX document describes that the Z value defines the bar width for a bar. But this does not work either.
Would it be possible to change the height of the graph depending on the number of rows or would it be possible to set the space between the bars to fixed value or disable the scaling?
Here is an example:
https://apex.oracle.com/pls/apex/f?p=56486:9:118273757021565:::::
demo/demo1234