diff --git a/src/components/chart/statistics-chart.ts b/src/components/chart/statistics-chart.ts index 614b2bce4a..cfbcc06ae7 100644 --- a/src/components/chart/statistics-chart.ts +++ b/src/components/chart/statistics-chart.ts @@ -455,7 +455,11 @@ export class StatisticsChart extends LitElement { borderWidth: 1.5, } : undefined, - color: band ? color + "3F" : color + "7F", + color: band + ? color + "3F" + : this.chartType === "bar" + ? color + "7F" + : color, }; if (band && this.chartType === "line") { series.stack = `band-${statistic_id}`;