Skip to content

Commit

Permalink
Hide "heating" data from climate charts
Browse files Browse the repository at this point in the history
  • Loading branch information
MindFreeze committed Jan 31, 2025
1 parent 1402802 commit 18ad278
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions src/components/chart/state-history-chart-line.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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
);
Expand Down

0 comments on commit 18ad278

Please sign in to comment.