1
我正在嘗試使用highcharts固體量具,並且我想要一個圖例,但Highcharts開發人員似乎已從固定量規系列中刪除了顏色選項,我相信這是傳說從它的顏色拉。Highcharts - 固體量規的顏色編碼圖例
series: [{
name: 'Move',
borderColor: Highcharts.getOptions().colors[0],
color: Highcharts.getOptions().colors[0],
data: [{
color: Highcharts.getOptions().colors[0],
radius: '100%',
innerRadius: '100%',
y: 80
}],
showInLegend:true
}, {
name: 'Exercise',
borderColor: Highcharts.getOptions().colors[1],
color: Highcharts.getOptions().colors[1],
data: [{
color: Highcharts.getOptions().colors[1],
radius: '75%',
innerRadius: '75%',
y: 65
}],
showInLegend:true
}, {
name: 'Stand',
borderColor: Highcharts.getOptions().colors[2],
color: Highcharts.getOptions().colors[2],
data: [{
color: Highcharts.getOptions().colors[2],
radius: '50%',
innerRadius: '50%',
y: 50
}],
showInLegend:true
}]
有沒有什麼辦法讓我的傳說相匹配的一系列顏色?
謝謝你,我錯過了API的這個功能,我認爲你是正確的,該標記是沒用在這種情況下,謝謝你救了我的時間跟蹤如何將它們關閉以及。 –