admin管理员组

文章数量:1316371

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

本文标签: javascriptChartJS How to add Data to a specific datasetStack Overflow