highcharts 根据每个堆叠条形图的大小对highchart中的堆叠条形图进行排序

bjp0bcyl  于 2022-11-11  发布在  Highcharts
关注(0)|答案(2)|浏览(955)

https://jsfiddle.net/vasjav1/ywspnocd
我想从最小到最大排序堆叠条形图,即最小的条形图应该首先出现,最大的应该出现在最后。我没有发现任何解决方案存在于任何其他地方与堆叠条形图有关。有解决方案存在于这里https://www.highcharts.com/docs/advanced-chart-features/data-sorting,但它是最适合的条形图,但我不能适合它与堆叠条形图。有人可以请帮我排序堆叠条形图吗?

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: (Highcharts.theme && Highcharts.theme.textColor) || 'gray'
            }
        }
    },
    legend: {
        align: 'right',
        x: -30,
        verticalAlign: 'top',
        y: 25,
        floating: true,
        backgroundColor: (Highcharts.theme && Highcharts.theme.background2) || '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,
                color: (Highcharts.theme && Highcharts.theme.dataLabelsColor) || 'white'
            }
        }
    },
    series: [{
        name: 'John',
        data: [5, 3, 4, 7, 2]
    }, {
        name: 'Jane',
        data: [2, 2, 3, 2, 1]
    }, {
        name: 'Joe',
        data: [3, 4, 4, 2, 5]
    }]
});
n3schb8v

n3schb8v1#

首先必须对数据进行排序,然后将其输入到highcharts中。例如,如果输入数据可以表示为:

{
    "Apples":  { "John": 5, "Jane": 2, "Joe": 3 },
    "Oranges": { "John": 3, "Jane": 2, "Joe": 4 },
    "Pears":   { "John": 4, "Jane": 3, "Joe": 4 },
    "Grapes":  { "John": 7, "Jane": 2, "Joe": 2 },
    "Bananas": { "John": 2, "Jane": 1, "Joe": 5 },
};

...然后您可以对 that 进行排序,然后将其转换为要传递给highcharts的参数:
第一个

hmtdttj4

hmtdttj42#

目前,数据排序功能仅适用于单个系列。
您可以使用相关排序,如here所述(例如:(x、x、e、f、x)

series: [{
  id: 'mainSeries',
  dataSorting: {
    enabled: true
  },
  data: [...]
}, {
  linkedTo: 'mainSeries',
  data: [...]
}, {
  linkedTo: 'mainSeries',
  data: [...]
}, {
  linkedTo: 'mainSeries',
  data: [...]
}]

或单独对每个系列进行排序(例如:https://jsfiddle.net/BlackLabel/dsm0bz3k/),但最好的方法是使用trincot的答案。

相关问题