dataLabels: { formatter:funnctin(){ return this.percentage //只在堆叠图或饼图中有效,是该点相对总值的百分比。 this.point //数据点对象,可以通过该对象来获取数据点相关的属性,例如 x 值,y值等 this.series: //数据点所在的数据列对象,可以通过该对象来获取数据列的属性,例如 this.series.name。 this.total //只在堆叠图中有效,表示堆叠总值。 this.x: //x 值 this.y: //y 值 //提示:可以通过 console.log(this) 来查看 this 包含的所有属性。 } }
我想获取每个柱子的name属性,用 this.series.name 发现不行,于是用 console.log(this) ,看到我的name属性在point下面,所以我用this.point.name取到了name