mirror of
https://github.com/chartjs/Chart.js.git
synced 2025-12-08 20:36:08 +00:00
* Define with let to avoid "assignment to constant" errors Thanks for this example. Defining `label` with `const` rather than `let` results in `Uncaught TypeError: Assignment to constant variable.` * Another case where const needs to be replaced with let. * Requested cases where const needs to be replaced with let +1 (style).
103 lines
2.8 KiB
Markdown
103 lines
2.8 KiB
Markdown
# Updating Charts
|
|
|
|
It's pretty common to want to update charts after they've been created. When the chart data or options are changed, Chart.js will animate to the new data values and options.
|
|
|
|
## 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.
|
|
|
|
```javascript
|
|
function addData(chart, label, data) {
|
|
chart.data.labels.push(label);
|
|
chart.data.datasets.forEach((dataset) => {
|
|
dataset.data.push(data);
|
|
});
|
|
chart.update();
|
|
}
|
|
|
|
function removeData(chart) {
|
|
chart.data.labels.pop();
|
|
chart.data.datasets.forEach((dataset) => {
|
|
dataset.data.pop();
|
|
});
|
|
chart.update();
|
|
}
|
|
```
|
|
|
|
## Updating Options
|
|
|
|
To update the options, mutating the options property in place or passing in a new options object are supported.
|
|
|
|
- If the options are mutated in place, other option properties would be preserved, including those calculated by Chart.js.
|
|
- If created as a new object, it would be like creating a new chart with the options - old options would be discarded.
|
|
|
|
```javascript
|
|
function updateConfigByMutating(chart) {
|
|
chart.options.plugins.title.text = 'new title';
|
|
chart.update();
|
|
}
|
|
|
|
function updateConfigAsNewObject(chart) {
|
|
chart.options = {
|
|
responsive: true,
|
|
plugins: {
|
|
title: {
|
|
display: true,
|
|
text: 'Chart.js'
|
|
}
|
|
},
|
|
scales: {
|
|
x: {
|
|
display: true
|
|
},
|
|
y: {
|
|
display: true
|
|
}
|
|
}
|
|
};
|
|
chart.update();
|
|
}
|
|
```
|
|
|
|
Scales can be updated separately without changing other options.
|
|
To update the scales, pass in an object containing all the customization including those unchanged ones.
|
|
|
|
Variables referencing any one from `chart.scales` would be lost after updating scales with a new `id` or the changed `type`.
|
|
|
|
```javascript
|
|
function updateScales(chart) {
|
|
let xScale = chart.scales.x;
|
|
let yScale = chart.scales.y;
|
|
chart.options.scales = {
|
|
newId: {
|
|
display: true
|
|
},
|
|
y: {
|
|
display: true,
|
|
type: 'logarithmic'
|
|
}
|
|
};
|
|
chart.update();
|
|
// need to update the reference
|
|
xScale = chart.scales.newId;
|
|
yScale = chart.scales.y;
|
|
}
|
|
```
|
|
|
|
You can also update a specific scale either by its id.
|
|
|
|
```javascript
|
|
function updateScale(chart) {
|
|
chart.options.scales.y = {
|
|
type: 'logarithmic'
|
|
};
|
|
chart.update();
|
|
}
|
|
```
|
|
|
|
Code sample for updating options can be found in [toggle-scale-type.html](https://www.chartjs.org/samples/latest/scales/toggle-scale-type.html).
|
|
|
|
## Preventing Animations
|
|
|
|
Sometimes when a chart updates, you may not want an animation. To achieve this you can call `update` with `'none'` as mode.
|