I am using this library: chartkick for load charts with vue, and need a chart bar with scroll how in this example. From HIGHTCHART. But i can´t set options to component in chartkick. I try set with :library
in component but no work.
Component:
<bar-chart :data="chartData.bar" :library="chartOptions"></bar-chart>
Data:
data() {
return {
chartData: {
bar: [],
colors: [this.colors]
},
chartOptions:{
xAxis: {
scrollbar: {
enabled: true
},
},
},
}
},