-
Notifications
You must be signed in to change notification settings - Fork 1
/
financial-price-series.json
59 lines (59 loc) · 1.58 KB
/
financial-price-series.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
{
"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
},
{
"type": "DataToolTipLayer",
"name": "Tooltip"
}
]
}
},
"modules": [
"charts/DataChartCoreModule",
"charts/DataChartCategoryModule",
"charts/DataChartCategoryCoreModule",
"charts/DataChartFinancialCoreModule",
"charts/DataChartFinancialModule",
"charts/DataChartFinancialOverlaysModule",
"charts/DataChartInteractivityModule",
"charts/DataChartAnnotationModule"
]
}