如果有1个数据,则将数据标签隐藏在堆积的柱形图中

问题描述 投票:0回答:1

如果只有一个大于零的数据集,我需要隐藏内部数据标签。我所说的数据集是

series: [{
        name: 'John',
        data: [5, 3, 0, 7, 2]
    }, {
        name: 'Jane',
        data: [2, 2, 0, 2, 0]
    }, {
        name: 'Joe',
        data: [3, 4, 3, 2, 0]
    }]

如果series.data [i]都为零(除了一个以外),则隐藏内部数据标签。在上述情况下,第3和第5个数据集只有0、0、3和2,0,0值,只有1个非零值,因此隐藏内部数据标签。

Highcharts.chart('container', {
    chart: {
        type: 'column'
    },
    title: {
        text: 'Stacked column chart'
    },
    xAxis: {
        categories: ['Apples', 'Oranges', 'Pears', 'Grapes', 'Bananas']
    },
    yAxis: {
        min: 0,
        title: {
            text: 'Total fruit consumption'
        },
        stackLabels: {
            enabled: true,
            style: {
                fontWeight: 'bold',
                color: ( // theme
                    Highcharts.defaultOptions.title.style &&
                    Highcharts.defaultOptions.title.style.color
                ) || 'gray'
            }
        }
    },
    legend: {
        align: 'right',
        x: -30,
        verticalAlign: 'top',
        y: 25,
        floating: true,
        backgroundColor:
            Highcharts.defaultOptions.legend.backgroundColor || 'white',
        borderColor: '#CCC',
        borderWidth: 1,
        shadow: false
    },
    tooltip: {
        headerFormat: '<b>{point.x}</b><br/>',
        pointFormat: '{series.name}: {point.y}<br/>Total: {point.stackTotal}'
    },
    plotOptions: {
        column: {
            stacking: 'normal',
            dataLabels: {
                enabled: true,
                formatter:function() {
                  if(this.y != 0) {
                    return this.y;
                  }
        }
            }
        }
    },
    series: [{
        name: 'John',
        data: [5, 3, 0, 7, 2]
    }, {
        name: 'Jane',
        data: [2, 2, 0, 2, 0]
    }, {
        name: 'Joe',
        data: [3, 4, 3, 2, 0]
    }]
});

在这里我突出显示了应该从内部删除哪个数据标签。datalabels

javascript highcharts
1个回答
1
投票

在格式化程序功能中,您可以检查序列中的至少两个的y值是否大于0。

plotOptions: {
  column: {
    stacking: 'normal',
    dataLabels: {
      enabled: true,
      formatter: function() {
        var series = this.series.chart.series,
          xPos = this.point.x,
          filteredSeries;

        if (this.y != 0) {
          filteredSeries = series.filter((s) => (s.yData[xPos]));

          return filteredSeries.length > 1 ? this.y : '';
        }
      }
    }
  }
}

实时演示: http://jsfiddle.net/BlackLabel/6m4e8x0y/4971/

API参考: https://api.highcharts.com/highcharts/series.column.dataLabels.formatter

© www.soinside.com 2019 - 2024. All rights reserved.