我想將累積圖轉換爲非累積圖。基本上我有演示給你看:使用高度表將累積圖轉換爲非累積圖
這是累積的圖: http://jsfiddle.net/h1qq1rj8/
這是非累積圖: http://jsfiddle.net/h1qq1rj8/2/
$(function() {
Highcharts.chart('container', {
chart: {
type: 'column'
},
title: {
text: 'Total fruit consumtion, grouped by gender'
},
xAxis: {
categories: ['Apples', 'Oranges', 'Pears', 'Grapes', 'Bananas']
},
yAxis: {
allowDecimals: false,
min: 0,
title: {
text: 'Number of fruits'
}
},
tooltip: {
formatter: function() {
return '<b>' + this.x + '</b><br/>' +
this.series.name + ': ' + this.y + '<br/>' +
'Total: ' + this.point.stackTotal;
}
},
plotOptions: {
column: {
stacking: 'normal'
}
},
series: [{
name: 'John',
data: [1, 8, 12, 13, 23], // I need to convert this data to non-cumulative
stack: 'male'
}]
});
});
我已經累積的數據,將其轉換成非累積數據我在後端減去數據,但由於我的性能變慢,是不是有一個選項可以使圖表在Highcharts API本身中不累積?
編輯:
我多了一個圖,其中數據以不同的方式格式化: http://jsfiddle.net/h1qq1rj8/3/
第三個元素應該是5(12-8)或4(12-8-1)? – Dekel
它應該是4,謝謝你指出,我已經用固定的信息編輯了這個問題。 – user1735921