-
Notifications
You must be signed in to change notification settings - Fork 17
Expand file tree
/
Copy pathsidebar.json
More file actions
194 lines (194 loc) · 4.34 KB
/
sidebar.json
File metadata and controls
194 lines (194 loc) · 4.34 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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
{
"$schema": "https://raw.githubusercontent.com/deephaven/salmon-sync/refs/heads/main/sidebar.schema.json",
"config": {
"name": "Deephaven Plotly Express Docs"
},
"sidebars": {
"main": [
{
"label": "Introduction",
"path": "README.md"
},
{
"label": "Plot Types",
"collapsible": false,
"items": [
{
"label": "Area",
"path": "area.md"
},
{
"label": "Bar",
"path": "bar.md"
},
{
"label": "Box",
"path": "box.md"
},
{
"label": "Candlestick",
"path": "candlestick.md"
},
{
"label": "Choropleth",
"path": "choropleth.md"
},
{
"label": "Choropleth Map",
"path": "choropleth-map.md"
},
{
"label": "Density Heatmap",
"path": "density_heatmap.md"
},
{
"label": "Density Map",
"path": "density-map.md"
},
{
"label": "Funnel",
"path": "funnel.md"
},
{
"label": "Funnel Area",
"path": "funnel-area.md"
},
{
"label": "Histogram",
"path": "histogram.md"
},
{
"label": "Icicle",
"path": "icicle.md"
},
{
"label": "Indicator",
"path": "indicator.md"
},
{
"label": "Line",
"path": "line.md"
},
{
"label": "Line 3d",
"path": "line-3d.md"
},
{
"label": "Line Geo",
"path": "line-geo.md"
},
{
"label": "Line Map",
"path": "line-map.md"
},
{
"label": "Line Polar",
"path": "line-polar.md"
},
{
"label": "Line Ternary",
"path": "line-ternary.md"
},
{
"label": "OHLC",
"path": "ohlc.md"
},
{
"label": "Pie",
"path": "pie.md"
},
{
"label": "Scatter",
"path": "scatter.md"
},
{
"label": "Scatter 3d",
"path": "scatter-3d.md"
},
{
"label": "Scatter Geo",
"path": "scatter-geo.md"
},
{
"label": "Scatter Map",
"path": "scatter-map.md"
},
{
"label": "Scatter Polar",
"path": "scatter-polar.md"
},
{
"label": "Scatter Ternary",
"path": "scatter-ternary.md"
},
{
"label": "Strip",
"path": "strip.md"
},
{
"label": "Sunburst",
"path": "sunburst.md"
},
{
"label": "Timeline",
"path": "timeline.md"
},
{
"label": "Treemap",
"path": "treemap.md"
},
{
"label": "Violin",
"path": "violin.md"
}
]
},
{
"label": "Concepts",
"collapsible": false,
"items": [
{
"label": "Plot by",
"path": "plot-by.md"
},
{
"label": "Filter",
"path": "filter.md"
},
{
"label": "Sub plot",
"path": "sub-plots.md"
},
{
"label": "Layer plot",
"path": "layer-plots.md"
},
{
"label": "Multiple axes",
"path": "multiple-axes.md"
},
{
"label": "Titles and Legends",
"path": "titles-legends.md"
},
{
"label": "Chart Customization",
"path": "unsafe-update-figure.md"
},
{
"label": "Static Image Export",
"path": "static-image-export.md"
}
]
},
{
"label": "Limitations",
"path": "limitations.md"
},
{
"label": "Example Data",
"path": "example-data.md"
}
]
}
}