-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathdefault-data.json
More file actions
56 lines (55 loc) · 2 KB
/
Copy pathdefault-data.json
File metadata and controls
56 lines (55 loc) · 2 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
{
"axis": {
"showXAxis": true,
"showYAxis": true,
"showLegend": true,
"showBox": false,
"showTitle": true,
"timeseries": true,
"xAxisLabel": "Time",
"xAxisZoom": false,
"yAxisLabel": "Temperature",
"yAxisLabelRight": "Units Produced",
"yAxisScaling": false,
"yAxisScalingRight": false,
"columnLayout": true
},
"dataseries": [
{
"label": "Demo Bubble",
"type": "scatter",
"styling": { "borderWidth": 2, "fill": false },
"advanced": { "drawOrder": 1 },
"data": [
{ "x": "2023-11-05T12:47:52.351152+00:00", "y": "40", "r": 10 },
{ "x": "2023-11-07T12:47:52.351152+00:00", "y": "40", "r": 70 },
{ "x": "2023-11-11T22:47:52.351152+00:00", "y": "32", "r": 27 }
]
},
{
"label": "Demo Bar",
"type": "bar",
"styling": { "borderWidth": 2, "pointStyle": "circle", "fill": false },
"yAxis": "right",
"advanced": { "drawOrder": 2 },
"data": [
{ "x": "2023-11-04T22:47:52.351152+00:00", "y": "2800" },
{ "x": "2023-11-05T22:47:52.351152+00:00", "y": "1000" },
{ "x": "2023-11-07T22:47:52.351152+00:00", "y": "5900" },
{ "x": "2023-11-10T22:47:52.351152+00:00", "y": "4200" }
]
},
{
"label": "Demo Line",
"type": "line",
"styling": { "fill": false, "borderWidth": 1, "borderDash": "solid", "pointStyle": "circle" },
"advanced": { "drawOrder": 3 },
"data": [
{ "x": "2023-11-03T22:47:52.351152+00:00", "y": "20" },
{ "x": "2023-11-06T09:47:52.351152+00:00", "y": "40" },
{ "x": "2023-11-08T09:47:52.351152+00:00", "y": "45" },
{ "x": "2023-11-11T22:47:52.351152+00:00", "y": "20" }
]
}
]
}