ポイントの近くにテキストを表示できますが、実際には、このテキストはポイントに添付されていません。また、ズーム中はテキストがポイントに追従しません。
私はこのコードを作成し、それは機能します:
events: {
redraw: function() {
$.each(chart.getSelectedPoints(), function(i, point) {
$('#txt-'+point.x+'-'+point.y)
.attr('y', point.plotY + chart.plotTop - 10)
.find('tspan')
.attr('x', point.plotX + chart.plotLeft + 10);
});
}
},
そして、この関数はポイント選択イベントで呼び出されます:
function addText(point) {
chart.renderer.text(
'paf!',
point.plotX + chart.plotLeft + 10,
point.plotY + chart.plotTop - 10
).attr({
zIndex: 5,
id: 'txt-'+point.x+'-'+point.y
}).add();
}
完全なコード: http: //jsfiddle.net/ManUtopiK/XaURC/
それを行う別の公式な方法があるかどうか知りたいだけですか?