在离子2中实现实时高级图表

时间:2017-03-31 09:09:44

标签: angular highcharts ionic2 livecharts

我想在离子2中实现一个实时图表:http://www.highcharts.com/demo/dynamic-update/sand-signika,所以angular2

我曾多次尝试过,但总是出错。

我在js中看到了这段代码:

$(document).ready(function () {
    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 = Math.random();
                        series.addPoint([x, y], true, true);
                    }, 1000);
                }
            }
        },
        title: {
            text: 'Live random data'
        },
        xAxis: {
            type: 'datetime',
            tickPixelInterval: 150
        },
        yAxis: {
            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 = -19; i <= 0; i += 1) {
                    data.push({
                        x: time + i * 1000,
                        y: Math.random()
                    });
                }
                return data;
            }())
        }]
    });
});

但它让我在Highcharts上出错。另外在$(document(.ready())但我只是删除它并且它有效,所以问题是Highcharts。

我很喜欢打字稿,所以synthax也不同。 我也看到了这一点:here但不知道如何实施。

我的目的是在离子2中实现实时折线图。

1 个答案:

答案 0 :(得分:1)

如果你想在Angular2中使用Highcharts,你可以通过它来完成 Angular2 HighCharts提供正确的绑定。

这些说明对我来说很好:

来自CL:     npm install angular2-highcharts --save

App.module.ts

import { NgModule } from '@angular/core';
import { BrowserModule } from '@angular/platform-browser';
import { ChartModule } from 'angular2-highcharts';
import { App } from './App';

@NgModule({
    imports: [
      BrowserModule, 
      ChartModule.forRoot(require('highcharts')
    ],
    declarations: [App],
    bootstrap: [App]
})
export class AppModule {}