所以基本上我有一个用例,我无法复制到现有的higcharts示例。场景是
在X轴上我希望有5个不同的类别说A,B,C,D,E,F
现在在类别A
上我希望有4列带有数值(基于Y轴)。
所以我想传递数据的方式就像
data = [
{
name:"A",
data:[
12, 13, 15, 16
] // They should come as the columns on A and these columns can have different names as well.
}
]