-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathTiingoTest.xml
More file actions
78 lines (65 loc) · 2.79 KB
/
TiingoTest.xml
File metadata and controls
78 lines (65 loc) · 2.79 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
78
<?xml version="1.0" encoding="utf-8"?>
<!DOCTYPE column-panel SYSTEM "sierra.dtd">
<column-panel spacing="8" padding="8" opaque="true">
<row-panel spacing="8">
<row-panel spacing="4">
<label text="ticker"/>
<text-field name="tickerTextField" columns="6"/>
</row-panel>
<row-panel spacing="4">
<label text="count"/>
<spinner name="countSpinner"/>
</row-panel>
<activity-indicator name="activityIndicator" indicatorSize="18"/>
<spacer weight="1"/>
<button name="submitButton" text="submit"/>
</row-panel>
<separator/>
<row-panel spacing="8" weight="1">
<column-panel spacing="4">
<column-panel spacing="4" alignToGrid="true">
<row-panel>
<label text="name" alignmentX="1.0"/>
<row-panel>
<text-field name="nameTextField" columns="16" editable="false"/>
</row-panel>
</row-panel>
<row-panel>
<label text="exchangeCode" alignmentX="1.0"/>
<row-panel>
<text-field name="exchangeCodeTextField" columns="6" editable="false"/>
</row-panel>
</row-panel>
<row-panel>
<label text="startDate" alignmentX="1.0"/>
<row-panel>
<text-field name="startDateTextField" columns="12" editable="false"/>
</row-panel>
</row-panel>
<row-panel>
<label text="endDate" alignmentX="1.0"/>
<row-panel>
<text-field name="endDateTextField" columns="12" editable="false"/>
</row-panel>
</row-panel>
</column-panel>
<separator/>
<scroll-pane weight="1">
<text-area name="descriptionTextArea" editable="false" lineWrap="true" wrapStyleWord="true"/>
</scroll-pane>
</column-panel>
<separator orientation="vertical"/>
<tabbed-pane style="showContentSeparator: false" weight="1">
<scroll-pane tabTitle="table">
<table name="historicalPricingTable" rowSelectionMode="single-selection"/>
</scroll-pane>
<scroll-pane tabTitle="chart">
<stack-panel padding="8" opaque="true" background="TextArea.background"
scrollableTracksViewportWidth="true"
scrollableTracksViewportHeight="true">
<chart-pane name="historicalPricingChartPane" opaque="true"/>
</stack-panel>
</scroll-pane>
</tabbed-pane>
</row-panel>
</column-panel>