图表选项未与图表js一起使用

时间:2017-09-08 17:15:43

标签: javascript typescript chart.js aurelia

我有一个使用图表js的Aurelia项目。我可以很好地显示图表,但似乎没有使用图表选项。

我有一个打字机控制器,可以执行以下操作:

SimpleLineData: LinearChartData;
optionschart: ChartSettings;

 activate() {

    this.optionschart = this.chartoptions;
    this.xx();
    setInterval(this.yy.bind(this), 1000);
}

public xx() {

      this.SimpleLineData  = {
        labels: ["January", "February", "March", "April", "May", "June", "July"],
        datasets: [
            {
                label: "My First dataset 1",
                fillColor: '#9b0391',
                strokeColor: '#9b0391',
                pointColor: '#9b0391',
                pointStrokeColor: '#9b0391',
                pointHighlightFill: '#9b0391',
                pointHighlightStroke: '#9b0391',
                borderColor: "#9b0391",
                data: [65, 59, 80, 81, 56, 55, 40]
            },
            {
                label: "My Second dataset 2",
                fillColor: 'rgba(151,187,205,0.2)',
                strokeColor: 'rgba(151,187,205,1)',
                pointColor: 'rgba(151,187,205,1)',
                pointStrokeColor: '#fff',
                pointHighlightFill: '#fff',
                pointHighlightStroke: 'rgba(151,187,205,1)',
                borderColor: "rgba(151,187,205,1)",
                data: [28, 48, 40, 19, 86, 27, 90]
            }
        ]
    }
}

 public yy() {
    this.SimpleLineData.datasets[0].data[0] = this.x;
    this.x++;
}

public chartoptions = {
    animation: false
};

在我的HTML中,我做了:

 <chart type="line" style="width: 50%; height: 50%; display: block;" should-update="true" throttle="1000" naive-options="optionschart" data.bind="SimpleLineData"></chart>

调用yy()时,数据会更新,但图表会再次使用动画渲染。即使我设置了animation: false选项。

有人有消化吗?

1 个答案:

答案 0 :(得分:2)

你的HTML中有拼写错误。 naive-options应更改为native-options。它仍然可能无效,因为根据documentation,它应该是native-options.bind