-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathtrendline-layer.json
More file actions
77 lines (77 loc) · 2.1 KB
/
Copy pathtrendline-layer.json
File metadata and controls
77 lines (77 loc) · 2.1 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
76
77
{
"descriptions": {
"legend": {
"type": "DataLegend",
"name": "legend",
"targetRef": "chart",
"headerRowVisible": true,
"summaryType": "None",
"valueRowVisible": true,
"valueTextColor": "transparent",
"headerText": "European Renewable Energy (2009-2018)"
},
"content": {
"type": "DataChart",
"name": "chart",
"computedPlotAreaMarginMode": "Series",
"axes": [
{
"type": "CategoryXAxis",
"name": "xAxis",
"dataSourceRef": "CountryRenewableElectricity",
"labelLocation": "OutsideBottom",
"label": "Year"
},
{
"type": "NumericYAxis",
"name": "yAxis",
"labelLocation": "OutsideLeft"
}
],
"series": [
{
"type": "LineSeries",
"name": "lineSeries1",
"title": "EU Energy",
"xAxisRef": "xAxis",
"yAxisRef": "yAxis",
"markerType": "Circle",
"dataSourceRef": "CountryRenewableElectricity",
"valueMemberPath": "Europe",
"showDefaultTooltip": true
},
{
"type": "TrendLineLayer",
"name": "trendLine1",
"title": "Logarithmic Trend",
"targetSeriesName": "lineSeries1",
"useIndex": true,
"trendLineType": "LogarithmicFit",
"trendLinePeriod": 10,
"useLegend": true,
"legendItemBadgeMode": "MatchSeries"
},
{
"type": "TrendLineLayer",
"name": "trendLine2",
"title": "Cubic Trend",
"targetSeriesName": "lineSeries1",
"useIndex": true,
"trendLineType": "CubicFit",
"trendLinePeriod": 10,
"useLegend": true,
"legendItemBadgeMode": "MatchSeries"
}
]
}
},
"modules": [
"withDescriptions",
"charts/DataChartCategoryModule",
"charts/DataChartInteractivityModule",
"charts/DataChartAnnotationModule",
"charts/DataChartCategoryTrendLineModule",
"charts/TrendLineLayerModule",
"charts/DataLegendModule"
]
}