Hide "heating" data from climate charts (#23997)

This commit is contained in:
Petar Petrov 2025-01-31 19:13:13 +02:00 committed by Bram Kragten
parent d1d746e7e6
commit 6b691063a8

View File

@ -98,6 +98,7 @@ export class StateHistoryChartLine extends LitElement {
) + "<br>";
const datapoints: Record<string, any>[] = [];
this._chartData.forEach((dataset, index) => {
if (dataset.tooltip?.show === false) return;
const param = params.find(
(p: Record<string, any>) => p.seriesIndex === index
);