I’m working with an ECharts chart and I want to configure the dataZoom option within the toolbox.feature to be visible but initially disabled. Here is the configuration snippet I am using:
toolbox = {
feature: {
dataZoom: {
yAxisIndex: false,
}
}
}
Is there a way to achieve this in ECharts? Specifically, I want the dataZoom button to appear in the toolbox, but in a disabled state when the chart is first loaded.