我的图表中有一个onclick事件,无论何时点击它,调用该函数并找到点击的内容,现在,在我的主页面中,我需要知道何时调用该函数来获取其值,我该怎么办?那样做?
function pieChartForInterventions(chartID,pieChartData) {
chartID.kendoChart({
dataSource: {
data: pieChartData
},
series: [{
type: "pie",
field: "list",
categoryField: "mm",
padding: 0,
labels: {
visible: true,
}
}],
seriesClick:onDb,
tooltip: {
visible: true,
template: "${ category }"
}
,
legend: {
position: "bottom"
}
});
}
function onDb(e) {
debugger;
var _clicked = e.category;
var whatClicked;
debugger;
return _clicked;
}
onDb函数在点击时获取图表的值,现在我想拥有这个值,如何在主页面上获取onDb()的返回值并保存?
var s=onDb()
这不起作用