-
Notifications
You must be signed in to change notification settings - Fork 1
/
dash-array-trendline.json
61 lines (61 loc) · 1.77 KB
/
dash-array-trendline.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
{
"todo": "FIX: Attempted to access an element as a type incompatible with the array",
"export": false,
"descriptions": {
"content": {
"type": "DataChart",
"name": "chart",
"shouldAutoExpandMarginForInitialLabels": true,
"computedPlotAreaMarginMode": "Series",
"isVerticalZoomEnabled": true,
"isHorizontalZoomEnabled": true,
"axes": [
{
"type": "CategoryXAxis",
"name": "xAxis",
"dataSourceRef": "Stock2Years",
"labelLocation": "OutsideBottom",
"label": "Month",
"interval": 1,
"labelExtent": 30
},
{
"type": "NumericYAxis",
"name": "yAxis",
"labelLocation": "OutsideRight"
}
],
"series": [
{
"type": "FinancialPriceSeries",
"name": "series1",
"title": "Stock Price",
"displayType": "Candlestick",
"xAxisRef": "xAxis",
"yAxisRef": "yAxis",
"dataSourceRef": "Stock2Years",
"openMemberPath": "Open",
"highMemberPath": "High",
"lowMemberPath": "Low",
"closeMemberPath": "Close",
"volumeMemberPath": "Volume",
"showDefaultTooltip": true,
"trendLineType": "QuarticFit",
"trendLineBrush": "dodgerblue",
"trendLineDashArray": [5, 5]
}
]
}
},
"modules": [
"charts/DataChartCoreModule",
"charts/DataChartCategoryModule",
"charts/DataChartCategoryCoreModule",
"charts/DataChartCategoryTrendLineModule",
"charts/DataChartFinancialCoreModule",
"charts/DataChartFinancialModule",
"charts/DataChartFinancialOverlaysModule",
"charts/DataChartInteractivityModule",
"charts/DataChartAnnotationModule"
]
}