HighStock pointRange问​​题

时间:2016-03-31 16:36:42

标签: highcharts highstock

我很难让pointRange为我写过的HighStock组合图工作。

你可以在这里看到问题,这些栏应该是28天宽,但它们不是。我可以将此代码用于非HighStock图表,但有些东西阻止它在HighStock中工作,我一直无法弄明白。

http://jsfiddle.net/3fnfy434/

var chart = new Highcharts.StockChart({

        chart: {
            renderTo: 'container',
            height: 450
        },
        credits: {
            enabled: false
        },
        rangeSelector : {
            inputEnabled: false,
            selected : 2,
                buttons: [{
                    type: 'month',
                    count: 3,
                    text: '3m'
                }, {
                    type: 'year',
                    count: 1,
                    text: '1y'
                }, {
                    type: 'all',
                    text: 'All'
                }],
                labelStyle: {
                    color: '#40C6CE',
                    fontWeight: 'bold'
                }
        },
        title : {
                text : 'test'
        },
        xAxis: {
            type: 'datetime'
        },
        yAxis: [{ 
            allowDecimals: false,
            labels: {
                formatter: function() {
                    return this.value;
                },
                style: {
                    color: '#25408F'
                }
            },
            title: {
                text: 't',
                style: {
                    color: '#25408F'
                }
            }
        }],

        navigator: {
            baseSeries: 1
        },
        series : [{
            name: 's1',
            data:  d1,
            type: 'column',
            visible: true,
            pointRange: 28 * 24 * 3600 * 1000,
            tooltip: {
                valueDecimals: 0,
                valueSuffix: ''
            }
        },
        {
            name : 's2',
            data : d2,
            color: '#25408F',
            dataGrouping: {
                enabled: false
            },
            pointRange: 24 * 3600 * 1000,
            tooltip: {
                valueDecimals: 1,
                valueSuffix: ''
            }
        }]
});

非常感谢任何帮助。

0 个答案:

没有答案