Highcharts - 负值的饼图

时间:2014-12-09 10:11:02

标签: javascript graphics highcharts statistics

有没有办法避免在Highcharts中出现这种异常行为?

当我们更新图表时,饼图(圆环)图表上显示负值时会发生这种情况。没有加载。

Highcharts pie with one of the gauges showing a werid behavior

2 个答案:

答案 0 :(得分:1)

通常,如果您正在显示的数据中包含负值,请使用条形图而不是饼图。饼图应该代表总体,部分到整体关系的一部分,因此负数不会起作用,因为你不能有总数的负面部分。

如果您确实想要显示该值,请尝试将其包装为绝对值;

 plotOptions: {
     pie: {
        allowPointSelect: true,
        cursor: 'pointer',
        dataLabels: {
           enabled: true,
           formatter: function() {
               return this.point.positive ? this.y : this.y * (-1);// <-- or wrap in absolute Math.abs(this.y)
           },
           color: 'black',
           style: {
              font: '13px Trebuchet MS, Verdana, sans-serif'
           }
        }
     }
  }

<强> JSFiddle

答案 1 :(得分:1)

根据github thread,这应该在最新的主分支中修复。