mirror of
https://github.com/home-assistant/frontend.git
synced 2025-07-19 15:26:36 +00:00
Use smooth line for statistic line chart (#23984)
* Use smooth line for statistic line chart * Use same smooth options as chartjs
This commit is contained in:
parent
b2a6c8bd36
commit
6197e3483b
@ -432,6 +432,8 @@ export class StatisticsChart extends LitElement {
|
|||||||
const series: LineSeriesOption | BarSeriesOption = {
|
const series: LineSeriesOption | BarSeriesOption = {
|
||||||
id: `${statistic_id}-${type}`,
|
id: `${statistic_id}-${type}`,
|
||||||
type: this.chartType,
|
type: this.chartType,
|
||||||
|
smooth: this.chartType === "line" ? 0.4 : false,
|
||||||
|
smoothMonotone: "x",
|
||||||
cursor: "default",
|
cursor: "default",
|
||||||
data: [],
|
data: [],
|
||||||
name: name
|
name: name
|
||||||
|
Loading…
x
Reference in New Issue
Block a user