我想在点击highcharts的工具提示时启动一个事件。 我在Ionic / Angular项目中使用highcharts。 这是一个例子:
Highcharts.chart('container', {
title: {
text: 'Tooltip footer format demo'
},
subtitle: {
text: 'The tooltip should provide a HTML table where the table is closed in the footerFormat'
},
xAxis: {
categories: ['Jan', 'Feb', 'Mar', 'Apr', 'May', 'Jun', 'Jul', 'Aug', 'Sep', 'Oct', 'Nov', 'Dec']
},
tooltip: {
shared: true,
useHTML: true,
pointFormat: '<button onclick="launchEvent()"></button>',
valueDecimals: 2
},
series: [{
name: 'Short',
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]
}, {
name: 'Long named series',
data: [129.9, 171.5, 106.4, 129.2, 144.0, 176.0, 135.6, 148.5, 216.4, 194.1, 195.6, 154.4].reverse()
}]
});
问题在于,当我使用下面的代码时,我收到一条错误,指出页面中不存在launchEvent()
,这是不正确的,因为它确实退出了。这让我认为该方法应该用Highchart的方法定义。
请问有什么想法吗?我想在工具提示中有一个click事件。