mirror of
https://github.com/home-assistant/frontend.git
synced 2025-07-29 12:16:39 +00:00
Only use opacity for bar graph
This commit is contained in:
parent
653aeae3d8
commit
4fa1b60cb1
@ -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}`;
|
||||
|
Loading…
x
Reference in New Issue
Block a user