我想为我的高图选项设置js函数。我将使用gson生成这些选项。在gson中你不能在json中包含js函数,所以我不能在java中包含我的js函数
$('#container').highcharts({
title: {
text: 'Async drilldown'
},
xAxis: {
type: 'category'
},
series: [{
name: 'Things',
colorByPoint: true,
data: [{
name: 'Animals',
y: 5,
drilldown: true
}]
}],
drilldown: {
series: []
}
});
对于上面的高图选项,我需要为下钻事件设置以下js函数drilldownfunc。
function drilldownfunc {
var chart = this,
drilldowns = {
'Animals': {
name: 'Animals',
data: [
['Cows', 2],
['Sheep', 3]
]
}
},
series = drilldowns[e.point.name];
chart.addSeriesAsDrilldown(e.point, series);
}