1

我正在研究类似于以下http://jsfiddle.net/7FdQR/1/的高图表

$(function () {
var chart;
$(document).ready(function() {
    chart = new Highcharts.Chart({
        chart: {
            renderTo: 'container',
            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: -100,
            verticalAlign: 'top',
            y: 20,
            floating: true,
            backgroundColor: (Highcharts.theme && Highcharts.theme.legendBackgroundColorSolid) || 'white',
            borderColor: '#CCC',
            borderWidth: 1,
            shadow: false
        },
        tooltip: {
            formatter: function() {
                return '<b>'+ this.x +'</b><br/>'+
                    this.series.name +': '+ this.y +'<br/>'+
                    'Total: '+ this.point.stackTotal;
            }
        },
        plotOptions: {
            column: {
                stacking: 'normal',
                dataLabels: {
                    enabled: true,
                    color: (Highcharts.theme && Highcharts.theme.dataLabelsColor) || 'white'
                }
            }
        },
        series: [{
            name: 'John',
            data: [null, 3, 7, 2, null]
        }, {
            name: 'Jane',
            data: [2, 2, 3, 2, 1]
        }, {
            name: 'Joe',
            data: [3, 4, 4, 2, 5]
        }]
    });
});

});

如果您查看 John 的数据,您会看到 apples 和bananas 的一些空值。

如果我们禁用 Jane 和 Joe 系列并仅保留 John 的信息,即使 John 的数据集中有空值并且 ignoreHiddenSeries 设置为 true,我们仍将在 x 轴上看到所有水果类别。我想在这里实现的是重新绘制 x 轴以仅显示橘子、梨和葡萄标签(x 轴上没有苹果和香蕉标签)。有没有办法在highcharts中做到这一点?

谢谢!

4

1 回答 1

1

找到了解决方案。它可能不是最好的,但它可以工作http://jsfiddle.net/Hm8T9/

我创建了一个小脚本并使用 setExtremes() 函数手动设置 xAxis 的最小值和最大值。

此外,如果您曾经处理 < 5 个类别并且不想显示所有类别(如在我的示例中),请将 xAxis 的 minRange 设置为 1 或您需要的任何数字。

xAxis: 
{
    minRange: 1
}
于 2013-03-07T02:53:35.977 回答