是否可以绘制下图所示的瀑布图?

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

我需要绘制如下瀑布图。在图表中,每一列都是类别的类型,值是通过添加子类型来计算的。我们如何在底部显示子类型(例如:气体1,气体2),在顶部显示类别(例如3类)。高图有可能吗?

enter image description here

highcharts
1个回答
0
投票
中显示子类型(例如:气体1,气体2)

您可以将两个xAxis与类别一起使用。例如:

xAxis: [{
  opposite: true,
  lineWidth: 0,
  categories: ['Start', 'Category1', 'Category2', 'Category3', 'Category4', 'Balance']
}, {
  linkedTo: 0,
  lineWidth: 0,
  categories: ['', 'Sub-Category 1', 'Liquid 1<br>Liquid 2', 'Gas 1<br>Gas 2', 'Solid 1', ''],
  labels: {
    rotation: 0,
    y: -10
  }
}]

实时演示: https://jsfiddle.net/BlackLabel/a9bzeqw4/1/

API参考: https://api.highcharts.com/highcharts/xAxis.labels

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