diff --git a/src/components/chart/state-history-chart-line.ts b/src/components/chart/state-history-chart-line.ts index afa913a4be..395a4f1096 100644 --- a/src/components/chart/state-history-chart-line.ts +++ b/src/components/chart/state-history-chart-line.ts @@ -99,7 +99,6 @@ export class StateHistoryChartLine extends LitElement { ) { this._chartOptions = { parsing: false, - animation: false, interaction: { mode: "nearest", axis: "xy", diff --git a/src/components/chart/state-history-chart-timeline.ts b/src/components/chart/state-history-chart-timeline.ts index 72808ae1ae..0806b1cc89 100644 --- a/src/components/chart/state-history-chart-timeline.ts +++ b/src/components/chart/state-history-chart-timeline.ts @@ -103,7 +103,6 @@ export class StateHistoryChartTimeline extends LitElement { this._chartOptions = { maintainAspectRatio: false, parsing: false, - animation: false, scales: { x: { type: "time", diff --git a/src/components/chart/statistics-chart.ts b/src/components/chart/statistics-chart.ts index 3673ec8cf5..2873df4d60 100644 --- a/src/components/chart/statistics-chart.ts +++ b/src/components/chart/statistics-chart.ts @@ -194,7 +194,6 @@ export class StatisticsChart extends LitElement { private _createOptions(unit?: string) { this._chartOptions = { parsing: false, - animation: false, interaction: { mode: "nearest", axis: "x", diff --git a/src/panels/config/hardware/ha-config-hardware.ts b/src/panels/config/hardware/ha-config-hardware.ts index 1d278c32ba..e3c9d8e4e1 100644 --- a/src/panels/config/hardware/ha-config-hardware.ts +++ b/src/panels/config/hardware/ha-config-hardware.ts @@ -145,7 +145,6 @@ class HaConfigHardware extends SubscribeMixin(LitElement) { protected willUpdate(): void { if (!this.hasUpdated) { this._chartOptions = { - animation: false, responsive: true, scales: { y: { diff --git a/src/panels/lovelace/cards/energy/common/energy-chart-options.ts b/src/panels/lovelace/cards/energy/common/energy-chart-options.ts index e67bc45315..a366122525 100644 --- a/src/panels/lovelace/cards/energy/common/energy-chart-options.ts +++ b/src/panels/lovelace/cards/energy/common/energy-chart-options.ts @@ -57,7 +57,6 @@ export function getCommonOptions( const options: ChartOptions = { parsing: false, - animation: false, interaction: { mode: "x", }, diff --git a/src/panels/lovelace/cards/energy/hui-energy-devices-graph-card.ts b/src/panels/lovelace/cards/energy/hui-energy-devices-graph-card.ts index 4b980d2257..a776cef506 100644 --- a/src/panels/lovelace/cards/energy/hui-energy-devices-graph-card.ts +++ b/src/panels/lovelace/cards/energy/hui-energy-devices-graph-card.ts @@ -111,7 +111,6 @@ export class HuiEnergyDevicesGraphCard private _createOptions = memoizeOne( (locale: FrontendLocaleData): ChartOptions => ({ parsing: false, - animation: false, responsive: true, maintainAspectRatio: false, indexAxis: "y",