iccube - Gantt Amchart - how to switch scrollbar Axe?

101 Views Asked by At

Looking at the AMChart demo here, I see the scrollbar is on top of the chart. enter image description here

It is made visible using the folowing code

  "valueScrollbar": {
    "autoGridCount": true
  },

In IcCube reporting, When I create a gantt and select "Scrollbar Enabled", the scroll appears on the right of the chart, on the other Axis.

enter image description here

How can I switch this ? I did not find the right option ? is it available ?

UPDATE :

I got it working putting the following code

/**
 * Return patched 
 * options object.
 */
function(context, options) {
    debugger
    options.dataRenderOptions.valueScrollbar = Object;
 options.dataRenderOptions.valueScrollbar.autoGridCount=false;
 return options;
}

in the Before Render JS code of the widget.

But still would be better if iCcube could integrate this internally.

1

There are 1 best solutions below

0
On BEST ANSWER

IcCube guys included this new functionality in their 6.8.6 release. Thanks