请参阅此处的演示链接Sample
$(function () {
$('#container').highcharts({
<some codes>
plotOptions: {
column: {
stacking: 'normal',
dataLabels: {
enabled: true,
color: (Highcharts.theme && Highcharts.theme.dataLabelsColor) || 'white'
}
}
},
series: [{
name: 'John',
data: [5, 3, 4, 7, 2]
}, {
name: 'Jane',
data: [2, 2, 3, 2, 1]
}, {
name: 'Joe',
data: [3, 4, 4, 2, 5]
},{
name: 'indicator',
data: [5],
type: 'scatter',
marker:{
//here you can have your url
symbol: 'circle',
}
}]
});
});
我正在尝试将当前居中对齐的散点图与柱形图对齐。我希望这些对应于柱形图
答案 0 :(得分:1)
您可以使用带有数字值的pointPlacement参数。
答案 1 :(得分:1)
对于类别图表,您仍可以在数据系列中指定x值。 x的值为N.25,是列的右边缘,0.25,1.25,2.25等......
{
name: 'indicator',
data: [[0.25,5]],
type: 'scatter',
marker:{
//here you can have your url
symbol: 'circle',
}
}
更新了fiddle。