amchart 堆积柱形图组合折线图
amchart Stacked column chart combined line chart
我正在为我的图表使用 amchart.js。我有一个堆叠柱形图和多个折线图组合成一个 chart.Problem 以及条形图,我的折线图也在堆叠。Screenshot of the final chart
如果您希望某些图表不堆叠,请将它们的 stackable
属性 设置为 false
。即:
"graphs": [{
// column graph #1
// ...
}, {
// column graph #2
// ...
}, {
// line graph #1
// ...
"stackable": false
}, {
// line graph #2
// ...
"stackable": false
}]
我正在为我的图表使用 amchart.js。我有一个堆叠柱形图和多个折线图组合成一个 chart.Problem 以及条形图,我的折线图也在堆叠。Screenshot of the final chart
如果您希望某些图表不堆叠,请将它们的 stackable
属性 设置为 false
。即:
"graphs": [{
// column graph #1
// ...
}, {
// column graph #2
// ...
}, {
// line graph #1
// ...
"stackable": false
}, {
// line graph #2
// ...
"stackable": false
}]