将日期范围过滤器添加到Highcharts图表

时间:2014-04-09 18:38:20

标签: highcharts

是否可以将X轴范围选择器添加到Highcharts图表中,或者仅在Highstock中内置该功能?

这是我的代码:

$('#graph').highcharts({
    title: {
        text: 'GRAPH TITLE',
        margin: 25
    },
    xAxis: [{
        categories: ['03/28','03/29','03/30','03/31','04/01','04/02','04/03','04/04','04/05','04/06','04/07','04/08','04/09']
    }],
    yAxis: {
        title: {
            enabled: false
        },
        plotLines: [{
            value: 0,
            width: 1,
            color: '#808080'
        }],
        min: 0
    },
    legend: {
        layout: 'vertical',
        borderWidth: 0,
        enabled: false
    },
    series: [{
        data: [27893,89070,90592,112166,68395,62448,39237,28439,21973,24064,56032,52854,38736]
    }],
    tooltip: {
        enabled: false
    },
    plotOptions: {
        area: {
            dataLabels: {
                enabled: true,
                y: -5,
                align: 'center'
            }
        }
    },
    credits: {
        enabled: false
    },
    exporting: {
        enabled: false
    },
    chart: {
        type: 'area'
    }
});

1 个答案:

答案 0 :(得分:1)

是的,这是可能的,但rangeSelector仅适用于日期时间轴。

无论如何,您需要有效的Highstock许可才能启用rangeSelector,请参阅FAQ

相关问题