来自Api的Highcharts动态数据

时间:2017-08-07 12:52:41

标签: highcharts

我想创建一个从Api读取数据的图表。要做到这一点,我有这个小提琴http://jsfiddle.net/68oe1oLf/69/

注意:https://jsfiddle.net/68oe1oLf/69/会导致混合内容错误,并且无法从api加载数据

这是javascript代码

$(document).ready(function () {
$.get( "http://firmbridgecapital.com/live.php", function( dt ) {
     localStorage.setItem("data", dt);
     });

window.setInterval(function(){
  $.get( "http://firmbridgecapital.com/live.php", function( dt ) {
     localStorage.setItem("data", dt);
     });
}, 5000);

    Highcharts.setOptions({
        global: {
            useUTC: false
        }
    });

    Highcharts.chart('container', {
        chart: {
            type: 'spline',
            animation: Highcharts.svg, // don't animate in old IE
            marginRight: 10,
            events: {
                load: function () {

                    // set up the updating of the chart each second
                    var series = this.series[0];
                    setInterval(function () {
                        var x = (new Date()).getTime(), // current time
                            y = parseInt(localStorage.getItem("data"));
                        series.addPoint([x, y], true, true);
                    }, 5000);
                }
            }
        },
        title: {
            text: 'Live random data'
        },
        xAxis: {
            type: 'datetime',
            tickPixelInterval: 150
        },
        yAxis: {
          max: 3,
            title: {
                text: 'Value'
            },
            plotLines: [{
                value: 0,
                width: 1,
                color: '#808080'
            }]
        },
        tooltip: {
            formatter: function () {
                return '<b>' + this.series.name + '</b><br/>' +
                    Highcharts.dateFormat('%Y-%m-%d %H:%M:%S', this.x) + '<br/>' +
                    Highcharts.numberFormat(this.y, 2);
            }
        },
        legend: {
            enabled: false
        },
        exporting: {
            enabled: false
        },
        series: [{
            name: 'Random data',
            data: (function () {
                // generate an array of random data
                var data = [],
                    time = (new Date()).getTime(),
                    i;

                for (i = -150; i <= 0; i += 25) {
                    data.push({
                        x: time,
                        y: parseInt(localStorage.getItem("data"))
                    });
                }
                return data;
            }())
        }]
    });
});

我借用了这个文档示例http://jsfiddle.net/gh/get/library/pure/highcharts/highcharts/tree/master/samples/highcharts/demo/dynamic-update/

中的想法

我的图表始终以值1为基础,并且不显示y轴上的变化值。我怎么能解决这个问题?。

1 个答案:

答案 0 :(得分:1)

您引用的值,即live php page,似乎是1.x并且增长非常缓慢。 (我看的时候是1.7)。

在解析中,您可以执行以下操作:

y = parseInt(localStorage.getItem("data"));

由于值为1.7,并且您尝试使用integer将其解析为parseInt,因此会转换为1。使用parseFloat会给你一个缓慢增加的图表。