是否可以为 SingleAxis 图表上的每个轴设置“内部”数据缩放?
我正在使用以下示例,但添加 dataZoom 对象仅适用于第一个轴。 https://echarts.apache.org/examples/en/editor.html?c=scatter-single-axis
我使用了这个 dataZoom : const options = {
...
dataZoom: [{
type: 'inside',
},
{
type: 'inside',
}],
...
}