This repository was archived by the owner on Aug 12, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 6
Graphs
ricoberger edited this page Apr 21, 2020
·
1 revision
dash support multiple graph/visualization types. These are singlestat, gauge, donut, sparkline, linechart and table.
Multiple graph types are supporting a stats array, to calulate the shown values. The stats array supports the following options:
-
min: The smallest value in the series. -
max: The largest value in the series. -
avg: The average of all the non-null values in the series. -
current: The last value in the series. -
total: The sum of all the non-null values in the series. -
first: The first value in the series. -
diff: The difference betweenfirstandcurrent(last value). -
range: The difference betweenmaxandmin.