有没有办法在 ApexCharts (VueJS) 的热图图表中提供缩放功能
<VueApexCharts v-bind:style="{ 'box-shadow':'0px 0px 2.3px 0px'}" width="350" height="220" type=heatmap :options="chartOptionsNew" :series="dataSeries"></VueApexCharts>
chartOptionsNew: {
chart: {
stacked: false,
zoom: {
type: 'x',
enabled: true,
autoScaleYaxis: false,
toolbar: {
autoSelected: 'zoom',
tools: { download: true, selection: true, zoom: true, zoomin: true, zoomout: true, pan: true, reset: true },
}
},
}
这在 ApexCharts 的热图图表中是否可行?
提前致谢!