diff --git a/src/components/figures/chart/chartJs/chartjs.ts b/src/components/figures/chart/chartJs/chartjs.ts index a53705bad..8406c4e66 100644 --- a/src/components/figures/chart/chartJs/chartjs.ts +++ b/src/components/figures/chart/chartJs/chartjs.ts @@ -65,6 +65,6 @@ export class ChartJsComponent extends Component { this.chart!.data.datasets = []; } this.chart!.config.options = chartData.options; - this.chart!.update("active"); + this.chart!.update(); } }