1
劍道餅圖爆炸功能不工作:劍道餅圖爆炸功能不能正常工作
$(e.sender.dataSource.options.data) //this line become null..
以下是JavaScript的:
seriesClick: function(e){
$(e.sender.dataSource.options.data).each(function (i, item) {
if (item.Description != e.category)
{
item.Exploded= false;
}
else
{
item.Exploded= true;
}
});
createChart();
}