Hi, please help with pivot table.
This is the previous configuration:
chartSettings: {
enableMultipleAxis: true,
chartSeries: { type: 'StackingColumn' }
}
And this is the UI:
You can see, there are icon which are clickable at the right top corner. They are toolbar items: zoom, zoom in, zoom out, pan, and reset. But when I change the code to this:
chartSettings: {
enableMultipleAxis: true,
chartSeries: { type: 'StackingColumn' },
zoomSettings: {
enableScrollbar: false,
toolbarItems: ['Zoom', 'ZoomIn', 'ZoomOut', 'Pan', 'Reset']
}
},
Then the UI doesn't display the toolbar items anymore.
I suspect it is because I set enableScrollbar to false. How can I display the toolbar items with the enableScrollbar set to false?
Thanks for any help.