Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Remove the documentation change
  • Loading branch information
etimberg committed Feb 10, 2019
commit 47c56fcc2b7cb8c70708014c3f015b8eb82dbbf5
2 changes: 1 addition & 1 deletion docs/developers/updates.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ It's pretty common to want to update charts after they've been created. When the

## Adding or Removing Data

Adding and removing data is supported by changing the data array. To add data, just add data into the data array as seen in this example. However, if `dataset.data` has been frozen using `Object.freeze()`, adding or removing data will not update the chart.
Adding and removing data is supported by changing the data array. To add data, just add data into the data array as seen in this example.

```javascript
function addData(chart, label, data) {
Expand Down