如图,想实现当鼠标停在柱形图上时柱形图颜色改变该怎么实现?
自定义提示
function(){
var point=this.points;
if(point[0].value<point[1].value){
point[1].mouseOverColor="#ff0000"; //系列2绿色的值大于系列1蓝色的值,悬浮颜色红色
}
return this.category+""+this.seriesName+":"+this.value;
关键语句point[1].mouseOverColor="#ff0000";
~~~~~