数据点提示怎么只显示系列名=2的数据
用条件属性做
条件属性中添加数据点提示,然后系列名称等于2
function(){
if (this.category=="2") {
return this.category+"<br>"+this.value;
}
else {
return "";