-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathrange-column-chart.json
More file actions
70 lines (70 loc) · 1.78 KB
/
range-column-chart.json
File metadata and controls
70 lines (70 loc) · 1.78 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
{
"strings": {
"legendTitle": "Monthly Temperature Range in LA and NYC"
},
"descriptions": {
"legend": {
"type": "Legend",
"name": "legend",
"orientation": "Horizontal"
},
"content": {
"type": "DataChart",
"name": "chart",
"isHorizontalZoomEnabled": false,
"isVerticalZoomEnabled": false,
"legendRef": "legend",
"axes": [
{
"type": "CategoryXAxis",
"name": "xAxis",
"label": "Month",
"interval": 1,
"dataSourceRef": "TemperatureRangeData"
},
{
"type": "NumericYAxis",
"name": "yAxis",
"title": "Temperature (in Celsius)",
"titleAngle": 90,
"titleLeftMargin": 10
}
],
"series": [
{
"type": "RangeColumnSeries",
"name": "RangeColumnSeries1",
"xAxisRef": "xAxis",
"yAxisRef": "yAxis",
"title": "Los Angeles",
"lowMemberPath": "LowLA",
"highMemberPath": "HighLA",
"showDefaultTooltip":false,
"dataSourceRef": "TemperatureRangeData"
},
{
"type": "RangeColumnSeries",
"name": "RangeColumnSeries2",
"xAxisRef": "xAxis",
"yAxisRef": "yAxis",
"title": "New York",
"lowMemberPath": "LowNY",
"highMemberPath": "HighNY",
"showDefaultTooltip":false,
"dataSourceRef": "TemperatureRangeData"
},
{
"type": "DataToolTipLayer",
"name": "dataToolTipLayer"
}
]
}
},
"modules": [
"charts/DataChartCoreModule",
"charts/DataChartCategoryModule",
"charts/DataChartInteractivityModule",
"charts/DataChartAnnotationModule",
"charts/LegendModule"
]
}