3
我想顯示爲灰色像這樣的酒吧在圖像的剩餘百分比如何在Highcharts中顯示Bar的剩餘百分比?
到目前爲止,我已經嘗試了這一點,並不能找到這種類型的Highcharts文檔中 所以請告訴我,我應該怎麼解決這個與highcharts文檔或jquery的
Highcharts.chart('Chart1Progress', {
chart: {
type: 'bar',
backgroundColor: null
},
title: null,
xAxis: {
categories: ['Apples', 'Oranges', 'Pears', 'Grapes', 'Bananas'],
visible: false,
shadow: true
},
yAxis: {
min: 0,
title: null,
stackLabels: {
enabled: true,
style: {
fontWeight: 'bold',
color: (Highcharts.theme && Highcharts.theme.textColor) || 'black'
}
},
},
legend: {
enabled: false,
align: 'right',
x: -30,
verticalAlign: 'top',
y: 25,
floating: true,
backgroundColor: (Highcharts.theme && Highcharts.theme.background2) || 'black',
borderColor: '#CCC',
borderWidth: 1,
shadow: true
},
plotOptions: {
column: {
stacking: 'normal',
dataLabels: {
enabled: false,
color: (Highcharts.theme && Highcharts.theme.dataLabelsColor) || 'white'
}
}
},
series: [{
name: 'John',
data: [{ y: 5, color: 'red' }, { y: 3, color: '#DDDF0D' }, { y: 4, color: '#55BF3B' }, { y: 7, color: '#5dacdf' }, { y: 2, color: 'pink' }]
}]
});
我不確定你可以用api。但你可以用css「繪製」線條(在圖表下面創建'div')。或者,您可以使用javascript將SVG行添加到Highchart創建的SVG。 –
最簡單的方法是添加第二個系列,將其計算爲現有系列點和最大值的增量,然後將該系列的顏色設置爲所需的灰色。 – jlbriggs