在使用Highcharts几周后,我们面临着生成适合数据结构的图表的问题。如果有人可以给我们提示,那会很好。
问题在于:
但是,面积图不会叠加我们的y值。有什么建议吗?
以下是我们问题的示例:link to jsFiddle
感谢您的帮助!
$(function () {
$('#container').highcharts({
chart: {
type: 'area'
},
title: {
text: 'Irregular point intervalls stacked area'
},
yAxis: {
title: {
text: 'value'
}
},
plotOptions: {
area: {
dataLabels: {
enabled: true
},
stacked: 'normal'
}
},
series: [{
name: 'test 1',
data: [[0, 7.0], [1, 6.9], [1.5, 9.5], [3, 14.5]]
}, {
name: 'test 2',
data: [[0, 3.9],[1, 4.2], [1.5, 5.7], [3, 8.5]]
}]
});
});
答案 0 :(得分:1)