2

我正在使用Highcharts,我希望图表在 z 轴上显示类别。这就是我现在拥有的:JSFiddle

zAxis: {
            min: 1,
            max: 3,
            categories: ['Apples', 'Bananas', 'Oranges'],
            minorTickInterval: 1,
            title: 'source'
        },

如您所见,我有 3 个类别。我希望它们以与 x 和 y 轴上的数字相同的方式显示。有任何想法吗?

4

1 回答 1

2

只需为配置中的每个轴设置类别,然后从 chart.zAxis[0].options.categories 获取 z 轴。然后,您可以获得 this.point.x this.point.y 和 this.point.z 中的索引,并返回包含类别名称的格式化工具提示。

代码:

tooltip: {
  formatter: function() {
    const chart = this.point.series.chart,
      catsX = chart.xAxis[0].categories,
      catsY = chart.yAxis[0].categories,
      catsZ = chart.zAxis[0].options.categories;
    return `X: ${catsX[this.point.x]}<br/>
        Y: ${catsY[this.point.y]}<br/>
        Z: ${catsZ[this.point.z]}`;
  }
},

现场示例: https ://jsfiddle.net/p86a7y0g/

API参考: http ://api.highcharts.com/highcharts/tooltip.formatter

输出: 在此处输入图像描述

于 2016-12-22T12:21:31.340 回答