Skip to content

Commit

Permalink
Fix #5424 : update echarts when removing series
Browse files Browse the repository at this point in the history
  • Loading branch information
pierrotsmnrd committed Aug 24, 2023
1 parent 78abc39 commit 49be3ec
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion panel/models/echarts.ts
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ export class EChartsView extends HTMLBoxView {
_plot(): void {
if ((window as any).echarts == null)
return
this._chart.setOption(this.model.data);
this._chart.setOption(this.model.data, true);
}

_resize(): void {
Expand Down

0 comments on commit 49be3ec

Please sign in to comment.