I have an column highchart on mouseover entire month values are showing i want one place value on click event我有鼠標功能。我需要關於Highcharts中鼠標點擊事件的工具提示。如何將工具提示轉換爲高圖表中的onclick事件?
Highcharts.chart('container', {
title: {
text: 'Mouse events demo'
},
subtitle: {
text: 'On point mouse click, the values should be reported in top left'
},
plotOptions: {
series: {
point: {
events: {
mouseOver: function() {
var chart = this.series.chart;
if (!chart.lbl) {
chart.lbl = chart.renderer.label('')
.attr({
padding: 10,
r: 10,
fill: Highcharts.getOptions().colors[1]
})
.css({
color: '#FFFFFF'
})
.add();
}
chart.lbl
.show()
.attr({
text: 'x: ' + this.x + ', y: ' + this.y
});
}
}
},
events: {
mouseOut: function() {
if (this.chart.lbl) {
this.chart.lbl.hide();
}
}
}
}
},
tooltip: {
enabled: false
},
series: [{
data: [29.9, 71.5, 106.4, 129.2, 144.0, 176.0, 135.6, 148.5, 216.4, 194.1, 95.6, 54.4]
}]
});
該代碼也可在JSFiddle。而不是鼠標懸停我想單擊事件。
嗨Sindhoor非常感謝你也可以幫助這個 我有一個像這樣的API響應http://www.mocky.io/v2/59705b29100000370471d90f我需要在鼠標懸停的工具提示和點擊事件時顯示的值太。我試圖通過把工具提示和點擊事件的陰謀選項不起作用 – siva
我已附上圖像 – siva
爲什麼沒有標記的答案?如果你這樣做,你永遠不會得到任何幫助 – Sindhoor