//tooptip此属性表达的是鼠标移那个位置显示的值
tooptip:{
formatter: function (){
//this.point.name 表达显示名字
//this.x 表达显示X轴的值
//this.y 表达显示Y轴的值
return s; //表达鼠标移到点显示的值
},
shared : true, //表达多条线同时显时s值。如果有此属性则没有this.point. 有this.points属性表达是数组
//下面显示s值显示风格
style : {
fontFamily : 'arial',
fontSize : '9pt'
},
crosshairs : [ {
width : 1,
color : 'green'
} ]
}