$(function() {
var chart = new Highcharts.Chart({
chart: {
renderTo: 'emmisions2015',
type: 'pie'
},
title: {
text: ''
},
plotOptions: {
pie: {
innerSize: '60%'
}
},
series: [{
data: [
['Direct Emissions', 5],
['Purchased Electricity', 15],
['Transport', 40]
]}]
},
// using
function(chart) { // on complete
var xpos = '50%';
var ypos = '53%';
var circleradius = 102;
// Render the circle
chart.renderer.circle(xpos, ypos, circleradius).attr({
fill: '#fff',
}).add();
// Render the text
chart.renderer.text('2015', 370, 225).css({
width: circleradius*2,
color: '#87868a',
fontSize: '23px',
textAlign: 'center'
}).attr({
// why doesn't zIndex get the text in front of the chart?
zIndex: 999
}).add();
});
});
我們有這段代碼可以生成de圖,但它不會採用我們想要的自定義顏色。換句話說,我們嘗試添加我們的自定義顏色代碼,但似乎並沒有採用它們。 TIA爲您提供幫助/想法。
非常感謝最後我們管理! – Bastcri