smarter-charts 2.0.2 → 2.1.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +3 -1
- package/dist/smarter-charts.es.js +13357 -9582
- package/dist/smarter-charts.umd.js +59 -59
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -35,6 +35,8 @@ config: {
|
|
|
35
35
|
params: {
|
|
36
36
|
timeFilterFrom?: string, // ISO date string or timestamp (start of time range)
|
|
37
37
|
timeFilterTo?: string // ISO date string or timestamp (end of time range)
|
|
38
|
+
signalTypes?: string[], // String IDs of the possible signal type retrieved by SMARTER API (e.g. ['AIR_TEMP'])
|
|
39
|
+
aggregationType?: string // Type of aggregation to perform on data. Accepted type: (SUM, AVG, MIN, MAX, MED)
|
|
38
40
|
}
|
|
39
41
|
}
|
|
40
42
|
```
|
|
@@ -48,7 +50,7 @@ config: {
|
|
|
48
50
|
| `<meancountor-chart-smarter>` | Heatmap of monitored soil portion for **mean** of matric potential in a given period|
|
|
49
51
|
| `<stdcountor-chart-smarter>` | Heatmap of monitored soil portion for **standard deviation** of matric potential in a given period |
|
|
50
52
|
| `<dripperandpluv-chart-smarter>` | Line chart showing irrigation and rainfall |
|
|
51
|
-
| `<
|
|
53
|
+
| `<signals-linechart-chart-smarter>` | Line chart for signals of requested type | `:hideOnMissingSignal` flage that indicates if hide chart when no signals retrieved
|
|
52
54
|
| `<humiditymap-smarter>` | Heatmap of monitored soil portion showing the matric potential | `:selectedTimestamp` timestamp of image to show
|
|
53
55
|
| `<humiditymultiline-chart-smarter>` | Area chart of humidity levels over times | `@selectTimestamp` events emitted containing the timestamp clicked
|
|
54
56
|
| `<heatmap-animation-smarter>` | Animation of humidity heatmap over time |
|