-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathscatter-line-chart.json
More file actions
75 lines (75 loc) · 1.97 KB
/
scatter-line-chart.json
File metadata and controls
75 lines (75 loc) · 1.97 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
{
"strings": {
"legendTitle": "Life Expectancy vs Health Expenditure"
},
"descriptions": {
"legend": {
"type": "Legend",
"name": "legend",
"orientation": "Horizontal"
},
"content": {
"type": "DataChart",
"name": "chart",
"legendRef": "legend",
"axes": [
{
"type": "NumericXAxis",
"name": "xAxis",
"title": "Life Expectancy (in years)",
"minimumValue": 72,
"maximumValue": 84,
"interval": 2
},
{
"type": "NumericYAxis",
"name": "yAxis",
"title": "Health Expenditure per Capita",
"abbreviateLargeNumbers": true,
"minimumValue": 1000,
"maximumValue": 6000,
"interval": 1000
}
],
"series": [
{
"type": "ScatterLineSeries",
"name": "ScatterLineSeries1",
"title": "Germany",
"xAxisRef": "xAxis",
"yAxisRef": "yAxis",
"xMemberPath": "LifeExpectancy",
"yMemberPath": "HealthExpense",
"dataSourceRef": "HealthDataForGermany",
"markerType": "Circle",
"showDefaultTooltip": true
},
{
"type": "ScatterLineSeries",
"name": "ScatterLineSeries2",
"title": "France",
"xAxisRef": "xAxis",
"yAxisRef": "yAxis",
"xMemberPath": "LifeExpectancy",
"yMemberPath": "HealthExpense",
"dataSourceRef": "HealthDataForFrance",
"markerType": "Circle",
"showDefaultTooltip": true
},
{
"type": "DataToolTipLayer",
"name": "dataToolTipLayer"
}
]
}
},
"modules": [
"charts/LegendModule",
"charts/NumberAbbreviatorModule",
"charts/DataChartCoreModule",
"charts/DataChartScatterModule",
"charts/DataChartScatterCoreModule",
"charts/DataChartInteractivityModule",
"charts/DataChartAnnotationModule"
]
}