Highchart - Boxplot - 显示没有数据的额外类别

时间:2018-04-19 10:00:54

标签: highcharts boxplot angular2-highcharts

当我用Highchart绘制BOX Plot图表时,如下所示:JSFiddle

chart: {
        type: 'boxplot',

    }

其中类别2“商家2”在x轴上显示,即使我们没有数据。

如果在箱形图中没有数据,我们怎样才能避免在x轴上渲染类别?

谢谢

1 个答案:

答案 0 :(得分:1)

Highcharts中没有内置机制可以过滤掉和隐藏“未使用”的类别。

解决方法:

breaks功能允许隐藏轴上的区域。这是一种算法,可以找到上面没有任何点的类别并应用中断:

    render: function() {
      if (redrawEnabled) {
        redrawEnabled = false;

        var emptyCategories = [],
          series = this.series,
          xAxis = this.xAxis[0],
          categories = xAxis.categories.slice(),
          categoryFlags = new Array(categories.length).fill(false), // indicates if any point has a value for category with the given index
          breaks = [],
          correspondingPoint;


        // find out which categories are 'used'
        for (var i = 0; i < categories.length; i++) {

          for (var ii = 0; ii < series.length; ii++) {
            if (!series[ii].visible) {
              continue;
            }

            correspondingPoint = series[ii].data.find((point) => point.x === i);
            if (correspondingPoint) {
              categoryFlags[i] = true;
              break;
            }
          }
        }

        // create and apply breaks
        categoryFlags.forEach(function(flag, index) {
          if (!flag) {
            breaks.push({
              from: index - 0.5,
              to: index + 0.5
            });
          }
        });

        //console.log(breaks)
        xAxis.update({
          breaks: breaks
        });
      }
      redrawEnabled = true;
    }

现场演示: http://jsfiddle.net/BlackLabel/fubwdm4x/

了解此解决方案如何工作的关键是,类别基本上只是如何格式化轴标签和位置标记的信息。 tickInterval始终为1,并且向左移动-0.5。因此,如果您有类似这样的类别:['Category 1', 'Category 2', 'Category 3'],则刻度的位置为:-0.5,0.5,1.5和2.5。

API参考: https://api.highcharts.com/highcharts/yAxis.breaks