我正在尝试使用dimple.js绘制多个系列条形图;我的要求非常简单,所有系列应该有单独的条(不叠加);两个系列的刻度不相同,一个是货币值,另一个是计数。
var v = {
[supplier: 'x', invoices: 10, invValue: 1000],
[supplier: 'y', invoices: 5, invValue: 500],
[supplier: 'z', invoices: 20, invValue: 2000],
}
我已经使用Google搜索并且还遍历了stackoverflow,其中费用建议像这样做数据黑客
var v = {
[supplier: 'x', kind: 'invoices', value: 10],
[supplier: 'x', kind: 'invValue', value: 1000],
[supplier: 'y', kind: 'invoices', value: 5],
[supplier: 'y', kind: 'invValue', value: 500],
[supplier: 'z', kind: 'invoices', value: 20],
[supplier: 'z', kind: 'invValue', value: 2000],
}
随着比例的变化,我没有采用这种方法。什么是可能的替代解决方案。
答案 0 :(得分:0)
最后我明白没有办法用dimple.js来实现图表,但作为替代方案,很容易使用多个折线图,也可以将第一个系列绘制为dimple.bar
,其他系列dimple.line
图表