我需要爲highCharts圖中的每列設置不同的顏色。 我highCharts GRPH是:爲高圖中的每列設置不同的顏色
options = {
chart: {
renderTo: 'chart',
type: 'column',
width: 450
},
title: {
text: 'A glance overview at your contest’s status'
},
xAxis: {
categories: ['Approved Photos', 'Pending Approval Photos', 'Votes', 'Entrants'],
labels: {
//rotation: -45,
style: {
font: 'normal 9px Verdana, sans-serif, arial'
}
}
},
yAxis: {
allowDecimals: false,
min: 0,
title: {
text: 'Amount'
}
},
legend: {
enabled: false
},
series: []
};
series = {
name: "Amount",
data: [],
dataLabels: {
enabled: true,
color: '#000000',
align: 'right',
x: -10,
y: 20,
formatter: function() {
return this.y;
},
style: {
font: 'normal 13px Verdana, sans-serif'
}
}
};
我就定在這樣的數據:
for (var i in Data) {
if (parseInt(Data[i]) != 0) {
series.data.push(parseInt(Data[i]));
}
else {
series.data.push(null);
}
}
options.series.push(series);
chart = new Highcharts.Chart(options);
我怎麼能在這個循環中的每個數據設置不同的顏色?
嗨!這又是我......我如何通過數據設置列寬。例如:如果數據是23我想設置列寬100px,如果數據是123,它將是110px。我需要將這個選項用於列中間的推杆數據。 – user750487
對不起,我不確定你會如何在高層圖上做到這一點。 – escouser
你可以通過plotOptions-> series-> linewidth來設置寬度。但是,這將固定圖表中所有條的寬度。也許你可以使用最大值來設置它。 http://www.highcharts.com/ref/#plotOptions-series--lineWidth –