-
Notifications
You must be signed in to change notification settings - Fork 1
/
polar-line-chart.json
78 lines (78 loc) · 2.05 KB
/
polar-line-chart.json
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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
{
"strings": {
"legendTitle": "Wind Speed vs Boat Speed"
},
"descriptions": {
"legend": {
"type": "Legend",
"name": "legend",
"orientation": "Horizontal"
},
"content": {
"type": "DataChart",
"name": "chart",
"legendRef": "legend",
"isHorizontalZoomEnabled": false,
"isVerticalZoomEnabled": false,
"axes": [
{
"type": "NumericAngleAxis",
"name": "angleAxis",
"startAngleOffset": -90,
"interval": 30,
"minimumValue": 0,
"maximumValue": 360
},
{
"type": "NumericRadiusAxis",
"name": "radiusAxis",
"radiusExtentScale": 0.9,
"innerRadiusExtentScale": 0.1,
"interval": 25,
"minimumValue": 0,
"maximumValue": 100
}
],
"series": [
{
"type": "PolarLineSeries",
"name": "PolarLineSeries1",
"dataSourceRef": "BoatSailingData",
"angleAxisRef": "angleAxis",
"radiusAxisRef": "radiusAxis",
"angleMemberPath": "Direction",
"radiusMemberPath": "WindSpeed",
"showDefaultTooltip": false,
"thickness": 1,
"title": "Wind Speed",
"markerType": "Circle"
},
{
"type": "PolarLineSeries",
"name": "PolarLineSeries2",
"dataSourceRef": "BoatSailingData",
"angleAxisRef": "angleAxis",
"radiusAxisRef": "radiusAxis",
"angleMemberPath": "Direction",
"radiusMemberPath": "BoatSpeed",
"showDefaultTooltip": false,
"thickness": 1,
"title": "Boat Speed",
"markerType": "Circle"
},
{
"type": "DataToolTipLayer",
"name": "dataToolTipLayer"
}
]
}
},
"modules": [
"charts/LegendModule",
"charts/DataChartCoreModule",
"charts/DataChartPolarModule",
"charts/DataChartPolarCoreModule",
"charts/DataChartInteractivityModule",
"charts/DataChartAnnotationModule"
]
}