Hi, I use vue pivot table component to display a table. But there is a horizontal scrollbar in it. Please see below picture:
How to get rid of the horizontal scrollbar? I can do it in pivot chart component but not in pivot table component. This is how I do it in pivot chart component:
chartSettings: {
enableMultipleAxis: true,
chartSeries: { type: 'StackingColumn' },
zoomSettings: {
enableScrollbar: false, /* remove the horizontal scrollbar */
toolbarItems: ['Zoom', 'ZoomIn', 'ZoomOut', 'Pan', 'Reset']
}
},
Thanks for any help.