我正在尝试为条形网格系列中的不同系列映射不同的Y轴。
option = {
legend: {},
tooltip: {},
dataset: {
source: [
['product', '2015', '2016', '2017'],
['Matcha Latte', 43.3, 85.8, 93.7],
['Milk Tea', 83.1, 73.4, 55.1],
['Cheese Cocoa', 86.4, 65.2, 82.5],
['Walnut Brownie', 72.4, 53.9, 39.1]
]
},
xAxis: {type: 'category'},
yAxis: {},
// Declare several bar series, each will be mapped
// to a column of dataset.source by default.
series: [
{type: 'bar'},
{type: 'bar'},
{type: 'bar'}
]
};
在这里,我要映射具有不同Y轴的“ Matcha Latte”和具有不同Y轴的“牛奶茶”。 YAxis Index适用于不同的条形(例如此处适用于2015年不同的yaxis和2016年不同的yaxis)。 有可能吗?