最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

javascript - Chart.JS: How to add Data to a specific dataset - Stack Overflow

programmeradmin1浏览0评论

Currently I use this to add data to my charts:

 targetChart.addData(value,targetDataSetIndex,"");

because I thought that this would add data to a specific set, adding an empty label.

But this doesnt work.

I then tried doing it myself by introducing a new method in the Chart.js script, like this:

    addDataValueToSpecificDataSet :function(value,datasetIndex)
    {
        this.datasets[datasetIndex].points.push(new this.PointClass({
            value: value,
            label: label,
            x: this.scale.calculateX(this.scale.valuesCount + 1),
            y: this.scale.endPoint,
            strokeColor: this.datasets[datasetIndex].pointStrokeColor,
            fillColor: this.datasets[datasetIndex].pointColor
        }));
    }

But when executing it isnt found. Where in Chart.JS do I need to put this so that it is accessible from the outside? Or can someone please tell me how im supposed to add data to a chart with multiple datasets one by one. I cant find it in the documentation which covers everything BUT adding and removing data.

Currently I use this to add data to my charts:

 targetChart.addData(value,targetDataSetIndex,"");

because I thought that this would add data to a specific set, adding an empty label.

But this doesnt work.

I then tried doing it myself by introducing a new method in the Chart.js script, like this:

    addDataValueToSpecificDataSet :function(value,datasetIndex)
    {
        this.datasets[datasetIndex].points.push(new this.PointClass({
            value: value,
            label: label,
            x: this.scale.calculateX(this.scale.valuesCount + 1),
            y: this.scale.endPoint,
            strokeColor: this.datasets[datasetIndex].pointStrokeColor,
            fillColor: this.datasets[datasetIndex].pointColor
        }));
    }

But when executing it isnt found. Where in Chart.JS do I need to put this so that it is accessible from the outside? Or can someone please tell me how im supposed to add data to a chart with multiple datasets one by one. I cant find it in the documentation which covers everything BUT adding and removing data.

Share Improve this question asked Oct 24, 2016 at 13:06 RaviorRavior 6113 gold badges11 silver badges30 bronze badges
Add a ment  | 

1 Answer 1

Reset to default 4

This works for me (you probably just need to add update):

function addData() {
  myBarChart.data.labels[12] ="2017";
  myBarChart.data.labels[13] ="2018";
  myBarChart.data.datasets[0].data[12] = 500;
  myBarChart.data.datasets[0].data[13] = 600;
  myBarChart.update();
}

CodePen: Add/Remove adjust data Chart.js

发布评论

评论列表(0)

  1. 暂无评论