为什么我使用Highstock,时间和价值不能总是对应?

时间:2014-07-31 14:34:30

标签: javascript highcharts highstock

我直到今天才发现这个问题,我的主管帮我找到了这个bug,我想很长一段时间都没有想到一个解决方案,最后放下调查,我发现我的内部highstock数据发生了变化,以下是我的数据截图,请帮助我们帮我看看这个问题,我将非常感谢你,这是我的配置代码。

App.factory "lineChartConfigure",["ChartTooltips",(ChartTooltips)->
return (tooltips,yAxisTitle)->
    return {
    navigator:
        enabled: false
    scrollbar:
        enabled: false
    rangeSelector:
        inputEnabled: false,
        selected: 5
    tooltip:
        formatter:()->
            return ChartTooltips.call(this,tooltips)
        changeDecimals: 4
    series: [
        type: 'line',
        data: [],

    ]
    exporting:
        buttons:
            contextButton:
                menuItems: [
                    {
                        text: 'Export to PNG (large)',
                        onclick: ()->
                            this.exportChart();
                        separator: false
                    }
                ]
                enabled: true
    yAxis:
        labels:
            style:
                fontFamily: 'Helvetica Neue, Helvetica, Arial, sans-serif',
        title:yAxisTitle
        opposite: false
        min: 0
    xAxis:
        ordinal: false
        dateTimeLabelFormats:
            millisecond: '%H:%M',
            second: '%H:%M',
            minute: '%H:%M',
            hour: '%H:%M',
            day: '%b-%e',
            week: '%b-%e',
            month: '%b-%e',
            year: '%y-%b-%e'
        labels:
            style:
                color: 'gray',
                fontWeight: 'normal',
                fontFamily: 'Helvetica Neue, Helvetica, Arial, sans-serif'
    }

这是我的真实数据。 enter image description here

这是修改后的内部highstock的数据。 enter image description here

0 个答案:

没有答案