You do this by attaching a handler to the legendItemClick
event and just returning false
. This will prevent the default action which is to toggle the pie sector.
point: {
events: {
legendItemClick: function () {
return false; // <== returning false will cancel the default action
}
}
}
See this example http://jsfiddle.net/mfras3r/3vVGB/1/
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…