0
我使用Highcharts創建分組條形圖並期望爲每個條添加標記。如何將標記添加到Highcharts中的分組條形圖?
我創建了一個與我想要的類似的多系列(條形+散點圖),但由於沒有「分組散點圖」,所以圓形標記居中(下面附有屏幕截圖)。
有沒有辦法改變它,使標記出現在同一行上的條?
Highcharts配置
{
chart: {
type: 'bar'
},
title: {
text: ''
},
xAxis: {
categories: ['One', 'Two', 'Three']
},
tooltip: {
enabled: true
},
series: [
{
name: '2015',
data: [7, 8, 9]
},
{
name: '2015 Goal',
marker: {
symbol: 'circle'
},
data: [5, 6, 6],
type:'scatter'
},
{
name: '2016',
data: [9, 9, 10]
},
{
name: '2016 Goal',
marker: {
symbol: 'circle'
},
data: [10,12,13],
type:'scatter'
}
]
}
非常感謝! – Joey