-
Notifications
You must be signed in to change notification settings - Fork 42
Expand file tree
/
Copy pathexamplePages.ts
More file actions
496 lines (490 loc) · 23.9 KB
/
Copy pathexamplePages.ts
File metadata and controls
496 lines (490 loc) · 23.9 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
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
import { bandSeriesChartExampleInfo } from "../Examples/Charts2D/BasicChartTypes/BandSeriesChart/exampleInfo";
import { splineBandSeriesChartExampleInfo } from "../Examples/Charts2D/BasicChartTypes/SplineBandSeriesChart/exampleInfo";
import { digitalBandSeriesChartExampleInfo } from "../Examples/Charts2D/BasicChartTypes/DigitalBandSeriesChart/exampleInfo";
import { fanChartExampleInfo } from "../Examples/Charts2D/BasicChartTypes/FanChart/exampleInfo";
import { bubbleChartExampleInfo } from "../Examples/Charts2D/BasicChartTypes/BubbleChart/exampleInfo";
import { candlestickChartExampleInfo } from "../Examples/Charts2D/BasicChartTypes/CandlestickChart/exampleInfo";
import { columnChartExampleInfo } from "../Examples/Charts2D/BasicChartTypes/ColumnChart/exampleInfo";
import { impulseChartExampleInfo } from "../Examples/Charts2D/BasicChartTypes/ImpulseChart/exampleInfo";
import { errorBarsChartExampleInfo } from "../Examples/Charts2D/BasicChartTypes/ErrorBarsChart/exampleInfo";
import { heatmapChartExampleInfo } from "../Examples/Charts2D/BasicChartTypes/HeatmapChart/exampleInfo";
import { contourChartExampleInfo } from "../Examples/Charts2D/BasicChartTypes/ContoursChart/exampleInfo";
import { lineChartExampleInfo } from "../Examples/Charts2D/BasicChartTypes/LineChart/exampleInfo";
import { splineLineChartExampleInfo } from "../Examples/Charts2D/BasicChartTypes/SplineLineChart/exampleInfo";
import { digitalLineChartExampleInfo } from "../Examples/Charts2D/BasicChartTypes/DigitalLineChart/exampleInfo";
import { mountainChartExampleInfo } from "../Examples/Charts2D/BasicChartTypes/MountainChart/exampleInfo";
import { splineMountainChartExampleInfo } from "../Examples/Charts2D/BasicChartTypes/SplineMountainChart/exampleInfo";
import { digitalMountainChartExampleInfo } from "../Examples/Charts2D/BasicChartTypes/DigitalMountainChart/exampleInfo";
import { scatterChartExampleInfo } from "../Examples/Charts2D/BasicChartTypes/ScatterChart/exampleInfo";
import { donutChartExampleInfo } from "../Examples/Charts2D/BasicChartTypes/DonutChart/exampleInfo";
import { pieChartExampleInfo } from "../Examples/Charts2D/BasicChartTypes/PieChart/exampleInfo";
import { realTimeMountainChartExampleInfo } from "../Examples/Charts2D/BasicChartTypes/RealTimeMountainChart/exampleInfo";
import { annotationsAreEasyExampleInfo } from "../Examples/Charts2D/ChartAnnotations/AnnotationsAreEasy/exampleInfo";
import { tradeMarkerAnnotationsExampleInfo } from "../Examples/Charts2D/ChartAnnotations/TradeMarkers/exampleInfo";
import { realtimeGhostedTracesExampleInfo } from "../Examples/FeaturedApps/PerformanceDemos/RealtimeGhostedTraces/exampleInfo";
import { multiPaneStockChartsExampleInfo } from "../Examples/Charts2D/CreateStockCharts/MultiPaneStockCharts/exampleInfo";
import { realtimeTickingStockChartsExampleInfo } from "../Examples/Charts2D/CreateStockCharts/RealtimeTickingStockCharts/exampleInfo";
import { chartLegendsAPIExampleInfo } from "../Examples/Charts2D/Legends/ChartLegendsAPI/exampleInfo";
import { multipleXAxesExampleInfo } from "../Examples/Charts2D/ModifyAxisBehavior/MultipleXAxes/exampleInfo";
import { secondaryYAxesExampleInfo } from "../Examples/Charts2D/ModifyAxisBehavior/SecondaryYAxes/exampleInfo";
import { verticalChartsExampleInfo } from "../Examples/Charts2D/ModifyAxisBehavior/VerticalCharts/exampleInfo";
import { centralAxesExampleInfo } from "../Examples/Charts2D/ModifyAxisBehavior/CentralAxes/exampleInfo";
import { verticallyStackedAxesExampleInfo } from "../Examples/Charts2D/ModifyAxisBehavior/VerticallyStackedAxes/exampleInfo";
import { stackedColumnChartExampleInfo } from "../Examples/Charts2D/BasicChartTypes/StackedColumnChart/exampleInfo";
import { stackedColumnSideBySideExampleInfo } from "../Examples/Charts2D/BasicChartTypes/StackedColumnSideBySide/exampleInfo";
import { stackedMountainChartExampleInfo } from "../Examples/Charts2D/BasicChartTypes/StackedMountainChart/exampleInfo";
import { usePointMarkersExampleInfo } from "../Examples/Charts2D/StylingAndTheming/UsePointMarkers/exampleInfo";
import { usingThemeManagerExampleInfo } from "../Examples/Charts2D/StylingAndTheming/UsingThemeManager/exampleInfo";
import { createACustomThemeExampleInfo } from "../Examples/Charts2D/StylingAndTheming/CreateACustomTheme/exampleInfo";
import { stylingInCodeExampleInfo } from "../Examples/Charts2D/StylingAndTheming/StylingInCode/exampleInfo";
import { perPointColoringExampleInfo } from "../Examples/Charts2D/StylingAndTheming/PerPointColoring/exampleInfo";
import { dashedLineStylingExampleInfo } from "../Examples/Charts2D/StylingAndTheming/DashedLineStyling/exampleInfo";
import { transparentBackgroundExampleInfo } from "../Examples/Charts2D/StylingAndTheming/TransparentBackground/exampleInfo";
import { hitTestApiExampleInfo } from "../Examples/Charts2D/TooltipsAndHittest/HitTestAPI/exampleInfo";
import { usingRolloverModifierTooltipsExampleInfo } from "../Examples/Charts2D/TooltipsAndHittest/UsingRolloverModifierTooltips/exampleInfo";
import { seriesSelectionExampleInfo } from "../Examples/Charts2D/TooltipsAndHittest/SeriesSelection/exampleInfo";
import { usingCursorModifierTooltipsExampleInfo } from "../Examples/Charts2D/TooltipsAndHittest/UsingCursorModifierTooltips/exampleInfo";
import { bubble3DChartExampleInfo } from "../Examples/Charts3D/Basic3DChartTypes/Bubble3DChart/exampleInfo";
import { surfaceMesh3DChartExampleInfo } from "../Examples/Charts3D/Basic3DChartTypes/SurfaceMesh3DChart/exampleInfo";
import { load500By500ExampleInfo } from "../Examples/FeaturedApps/PerformanceDemos/Load500By500/exampleInfo";
import { realtimePerformanceDemoExampleInfo } from "../Examples/FeaturedApps/PerformanceDemos/RealtimePerformanceDemo/exampleInfo";
import { vitalSignsMonitorDemoExampleInfo } from "../Examples/FeaturedApps/MedicalCharts/VitalSignsMonitorDemo/exampleInfo";
import { lidar3DPointCloudExampleInfo } from "../Examples/FeaturedApps/ScientificCharts/LiDAR3DPointCloudDemo/exampleInfo";
import { audioAnalyzerExampleInfo } from "../Examples/FeaturedApps/ScientificCharts/AudioAnalyzer/exampleInfo";
import { TPage } from "./pages";
import { tenorCurvesExampleInfo } from "../Examples/FeaturedApps/ScientificCharts/TenorCurves3D/exampleInfo";
import { loadOneMillionPointsExampleInfo } from "../Examples/FeaturedApps/PerformanceDemos/Load1MillionPoints/exampleInfo";
import { dragAxisToScaleExampleInfo } from "../Examples/Charts2D/ZoomingAndPanning/DragAxisToScale/exampleInfo";
import { realtimeZoomPanExampleInfo } from "../Examples/Charts2D/ZoomingAndPanning/RealtimeZoomPan/exampleInfo";
import { zoomAndPanWithMultipleChartModifiersExampleInfo } from "../Examples/Charts2D/ZoomingAndPanning/MultipleZoomPanModifiers/exampleInfo";
import { editableAnnotationsExampleInfo } from "../Examples/Charts2D/ChartAnnotations/EditableAnnotations/exampleInfo";
import { GalleryItem } from "../../helpers/types/types";
import { dragHorizontalThresholdExampleInfo } from "../Examples/Charts2D/ChartAnnotations/DragHorizontalThreshold/exampleInfo";
import { metaDataExampleInfo } from "../Examples/Charts2D/TooltipsAndHittest/MetaData/exampleInfo";
import { logarithmicAxisExampleInfo } from "../Examples/Charts2D/ModifyAxisBehavior/LogarithmicAxis/exampleInfo";
import { simpleChartExampleInfo } from "../Examples/BuilderApi/SimpleChart/exampleInfo";
import { fullChartExampleInfo } from "../Examples/BuilderApi/FullChart/exampleInfo";
import { chartFromJSONExampleInfo } from "../Examples/BuilderApi/ChartFromJSON/exampleInfo";
import { sharedDataExampleInfo } from "../Examples/BuilderApi/SharedData/exampleInfo";
import { customTypesExampleInfo } from "../Examples/BuilderApi/CustomTypes/exampleInfo";
import { multiLineLabelsExampleInfo } from "../Examples/Charts2D/AxisLabelCustomization/MultiLineLabels/exampleInfo";
import { imageLabelsExampleInfo } from "../Examples/Charts2D/AxisLabelCustomization/ImageLabels/exampleInfo";
import { rotatedLabelsExampleInfo } from "../Examples/Charts2D/AxisLabelCustomization/RotatedLabels/exampleInfo";
import { percentageChangeExampleInfo } from "../Examples/Charts2D/Filters/PercentageChange/exampleInfo";
import { trendMARatioExampleInfo } from "../Examples/Charts2D/Filters/TrendMARatio/exampleInfo";
import { customFiltersExampleInfo } from "../Examples/Charts2D/Filters/CustomFilters/exampleInfo";
import { dataAnimationExampleInfo } from "../Examples/Charts2D/Animations/DataAnimation/exampleInfo";
import { styleAnimationExampleInfo } from "../Examples/Charts2D/Animations/StyleAnimation/exampleInfo";
import { startupAnimationExampleInfo } from "../Examples/Charts2D/Animations/StartupAnimation/exampleInfo";
import { dataPointSelectionExampleInfo } from "../Examples/Charts2D/TooltipsAndHittest/DatapointSelection/exampleInfo";
import { overviewExampleInfo } from "../Examples/Charts2D/ZoomingAndPanning/OverviewModifier/exampleInfo";
import { genericAnimationExampleInfo } from "../Examples/Charts2D/Animations/GenericAnimation/exampleInfo";
import { drawBehindAxesExampleInfo } from "../Examples/Charts2D/ModifyAxisBehavior/DrawBehindAxes/exampleInfo";
import { nonUniformHeatmapExampleInfo } from "../Examples/Charts2D/BasicChartTypes/NonUniformHeatmapChart/exampleInfo";
import { axisTypesExampleInfo } from "../Examples/FeaturedApps/FeatureDemos/AxisTypes/exampleInfo";
import { subChartStockChartsExampleInfo } from "../Examples/Charts2D/CreateStockCharts/SubChartStockCharts/exampleInfo";
import { axisLayoutExampleInfo } from "../Examples/FeaturedApps/FeatureDemos/AxisLayout/exampleInfo";
import { websocketBigDataDemoExampleInfo } from "../Examples/FeaturedApps/ShowCases/WebsocketBigData/exampleInfo";
import {oilAndGasExplorerDashboard} from "../Examples/FeaturedApps/ShowCases/OilAndGasDashboard/exampleInfo";
import {TDocumentationLink} from "../../helpers/types/ExampleDescriptionTypes";
import { datalabelsExampleInfo } from "../Examples/Charts2D/StylingAndTheming/DataLabels/exampleInfo";
import { virtualizedDataOverviewExampleInfo } from "../Examples/Charts2D/ZoomingAndPanning/VirtualizedDataWithOverview/exampleInfo";
import { heatmapInteractionsExampleInfo } from "../Examples/FeaturedApps/ShowCases/HeatmapInteractions/exampleInfo";
import { depthChartExampleInfo } from "../Examples/Charts2D/CreateStockCharts/DepthChart/exampleInfo";
export type TExampleInfo = {
/**
* Example title
*/
title: string;
/**
* Meta title
*/
pageTitle: string;
path: string;
documentationLinks: TDocumentationLink[];
tips?: any;
description: any;
previewDescription?: any;
subtitle: () => JSX.Element;
/**
* OPTIONAL: If provided, use these items as a See Also. If not, they will be auto-generated from similar items
* in the top level menu. See {@link getSeeAlsoGalleryItems}
*/
seeAlso?: GalleryItem[];
githubUrl: string;
/**
* Page meta description
*/
metaDescription: string;
/**
* Page meta keywords
*/
metaKeywords: string;
thumbnailImage?: string;
};
export type TExamplePage = TPage & TExampleInfo;
function asRecord<T extends Record<string, TExamplePage>>(arg: T): T & Record<string, TExamplePage> {
return arg;
}
export const EXAMPLES_PAGES = asRecord({
chart2D_Animations_DataAnimation: {
id: "chart2D_Animations_DataAnimation",
...dataAnimationExampleInfo
},
chart2D_Animations_StyleAnimation: {
id: "chart2D_Animations_StyleAnimation",
...styleAnimationExampleInfo
},
chart2D_Animations_StartupAnimation: {
id: "chart2D_Animations_StartupAnimation",
...startupAnimationExampleInfo
},
chart2D_Animations_GenericAnimation: {
id: "chart2D_Animations_GenericAnimation",
...genericAnimationExampleInfo
},
chart2D_basicCharts_BandSeriesChart: {
id: "chart2D_basicCharts_BandSeriesChart",
...bandSeriesChartExampleInfo
},
chart2D_basicCharts_SplineBandChart: {
id: "chart2D_basicCharts_SplineBandChart",
...splineBandSeriesChartExampleInfo
},
chart2D_basicCharts_DigitalBandSeriesChart: {
id: "chart2D_basicCharts_DigitalBandSeriesChart",
...digitalBandSeriesChartExampleInfo
},
chart2D_basicCharts_FanChart: {
id: "chart2D_basicCharts_FanChart",
...fanChartExampleInfo
},
chart2D_basicCharts_BubbleChart: {
id: "chart2D_basicCharts_BubbleChart",
...bubbleChartExampleInfo
},
chart2D_basicCharts_CandlestickChart: {
id: "chart2D_basicCharts_CandlestickChart",
...candlestickChartExampleInfo
},
chart2D_basicCharts_ErrorBarsChart: {
id: "chart2D_basicCharts_ErrorBarsChart",
...errorBarsChartExampleInfo
},
chart2D_basicCharts_ColumnChart: {
id: "chart2D_basicCharts_ColumnChart",
...columnChartExampleInfo
},
chart2D_basicCharts_ImpulseChart: {
id: "chart2D_basicCharts_ImpulseChart",
...impulseChartExampleInfo
},
chart2D_basicCharts_HeatmapChart: {
id: "chart2D_basicCharts_HeatmapChart",
...heatmapChartExampleInfo
},
chart2D_basicCharts_NonUniformHeatmapChart: {
id: "chart2D_basicCharts_NonUniformHeatmapChart",
...nonUniformHeatmapExampleInfo
},
chart2D_basicCharts_ContourChart: {
id: "chart2D_basicCharts_ContourChart",
...contourChartExampleInfo
},
chart2D_basicCharts_LineChart: {
id: "chart2D_basicCharts_LineChart",
...lineChartExampleInfo
},
chart2D_basicCharts_SplineLineChart: {
id: "chart2D_basicCharts_SplineLineChart",
...splineLineChartExampleInfo
},
chart2D_basicCharts_DigitalLineChart: {
id: "chart2D_basicCharts_DigitalLineChart",
...digitalLineChartExampleInfo
},
chart2D_basicCharts_MountainChart: {
id: "chart2D_basicCharts_MountainChart",
...mountainChartExampleInfo
},
chart2D_basicCharts_SplineMountainChart: {
id: "chart2D_basicCharts_SplineMountainChart",
...splineMountainChartExampleInfo
},
chart2D_basicCharts_DigitalMountainChart: {
id: "chart2D_basicCharts_DigitalMountainChart",
...digitalMountainChartExampleInfo
},
chart2D_basicCharts_ScatterChart: {
id: "chart2D_basicCharts_ScatterChart",
...scatterChartExampleInfo
},
chart2D_basicCharts_DonutChart: {
id: "chart2D_basicCharts_DonutChart",
...donutChartExampleInfo
},
chart2D_basicCharts_PieChart: {
id: "chart2D_basicCharts_PieChart",
...pieChartExampleInfo
},
chart2D_basicCharts_RealtimeMountainChart: {
id: "chart2D_basicCharts_RealtimeMountainChart",
...realTimeMountainChartExampleInfo
},
chart2D_chartAnnotations_AnnotationsAreEasy: {
id: "chart2D_chartAnnotations_AnnotationsAreEasy",
...annotationsAreEasyExampleInfo
},
chart2D_chartAnnotations_EditableAnntations: {
id: "chart2D_chartAnnotations_EditableAnntations",
...editableAnnotationsExampleInfo
},
chart2D_chartAnnotations_TradeMarkers: {
id: "chart2D_chartAnnotations_TradeMarkers",
...tradeMarkerAnnotationsExampleInfo
},
chart2D_chartAnnotations_DragHorizontalThreshold: {
id: "chart2D_chartAnnotations_DragHorizontalThreshold",
...dragHorizontalThresholdExampleInfo
},
featuredApps_performanceDemos_RealtimeGhostedTraces: {
id: "featuredApps_performanceDemos_RealtimeGhostedTraces",
...realtimeGhostedTracesExampleInfo
},
featuredApps_performanceDemos_LoadOneMillionPoints: {
id: "featuredApps_performanceDemos_LoadOneMillionPoints",
...loadOneMillionPointsExampleInfo
},
chart2D_createStockCharts_MultiPaneStockCharts: {
id: "chart2D_createStockCharts_MultiPaneStockCharts",
...multiPaneStockChartsExampleInfo
},
chart2D_createStockCharts_RealtimeTickingStockCharts: {
id: "chart2D_createStockCharts_RealtimeTickingStockCharts",
...realtimeTickingStockChartsExampleInfo
},
chart2D_createStockCharts_SubchartStockCharts: {
id: "chart2D_createStockCharts_SubchartStockCharts",
...subChartStockChartsExampleInfo
},
chart2D_createStockCharts_DepthChart: {
id: "chart2D_createStockCharts_DepthChart",
...depthChartExampleInfo
},
chart2D_legends_ChartLegendsAPI: {
id: "chart2D_legends_ChartLegendsAPI",
...chartLegendsAPIExampleInfo
},
chart2D_modifyAxisBehavior_MultipleXAxes: {
id: "chart2D_modifyAxisBehavior_MultipleXAxes",
...multipleXAxesExampleInfo
},
chart2D_modifyAxisBehavior_SecondaryYAxes: {
id: "chart2D_modifyAxisBehavior_SecondaryYAxes",
...secondaryYAxesExampleInfo
},
chart2D_modifyAxisBehavior_VerticalCharts: {
id: "chart2D_modifyAxisBehavior_VerticalCharts",
...verticalChartsExampleInfo
},
chart2D_modifyAxisBehavior_CentralAxes: {
id: "chart2D_modifyAxisBehavior_CentralAxes",
...centralAxesExampleInfo
},
chart2D_modifyAxisBehavior_VerticallyStackedAxes: {
id: "chart2D_modifyAxisBehavior_VerticallyStackedAxes",
...verticallyStackedAxesExampleInfo
},
chart2D_modifyAxisBehavior_LogarithmicAxis: {
id: "chart2D_modifyAxisBehavior_LogarithmicAxis",
...logarithmicAxisExampleInfo
},
chart2D_modifyAxisBehavior_DrawBehindAxes: {
id: "chart2D_modifyAxisBehavior_DrawBehindAxes",
...drawBehindAxesExampleInfo
},
chart2D_axisLabelCustomization_MultiLineLabels: {
id: "chart2D_axisLabelCustomization_MultiLineLabels",
...multiLineLabelsExampleInfo
},
chart2D_axisLabelCustomization_ImageLabels: {
id: "chart2D_axisLabelCustomization_ImageLabels",
...imageLabelsExampleInfo
},
chart2D_axisLabelCustomization_RotatedLabels: {
id: "chart2D_axisLabelCustomization_RotatedLabels",
...rotatedLabelsExampleInfo
},
chart2D_basicCharts_StackedColumnChart: {
id: "chart2D_basicCharts_StackedColumnChart",
...stackedColumnChartExampleInfo
},
chart2D_basicCharts_StackedColumnSideBySide: {
id: "chart2D_basicCharts_StackedColumnSideBySide",
...stackedColumnSideBySideExampleInfo
},
chart2D_basicCharts_StackedMountainChart: {
id: "chart2D_basicCharts_StackedMountainChart",
...stackedMountainChartExampleInfo
},
chart2D_stylingAndTheming_UsePointMarkers: {
id: "chart2D_stylingAndTheming_UsePointMarkers",
...usePointMarkersExampleInfo
},
chart2D_stylingAndTheming_UsingThemeManager: {
id: "chart2D_stylingAndTheming_UsingThemeManager",
...usingThemeManagerExampleInfo
},
chart2D_stylingAndTheming_CustomTheme: {
id: "chart2D_stylingAndTheming_CustomTheme",
...createACustomThemeExampleInfo
},
chart2D_stylingAndTheming_StylingInCode: {
id: "chart2D_stylingAndTheming_StylingInCode",
...stylingInCodeExampleInfo
},
chart2D_stylingAndTheming_PerPointColoring: {
id: "chart2D_stylingAndTheming_PerPointColoring",
...perPointColoringExampleInfo
},
chart2D_stylingAndTheming_DashedLineStyling: {
id: "chart2D_stylingAndTheming_DashedLineStyling",
...dashedLineStylingExampleInfo
},
chart2D_stylingAndTheming_TransparentBackground: {
id: "chart2D_stylingAndTheming_TransparentBackground",
...transparentBackgroundExampleInfo
},
chart2D_stylingAndTheming_DataLabels: {
id: "chart2D_stylingAndTheming_DataLabels",
...datalabelsExampleInfo
},
chart2D_tooltipsAndHittest_HitTestApi: {
id: "chart2D_tooltipsAndHittest_HitTestApi",
...hitTestApiExampleInfo
},
chart2D_tooltipsAndHittest_UsingRolloverModifierTooltips: {
id: "chart2D_tooltipsAndHittest_UsingRolloverModifierTooltips",
...usingRolloverModifierTooltipsExampleInfo
},
chart2D_tooltipsAndHittest_UsingCursorModifierTooltips: {
id: "chart2D_tooltipsAndHittest_UsingCursorModifierTooltips",
...usingCursorModifierTooltipsExampleInfo
},
chart2D_tooltipsAndHittest_MetaData: {
id: "chart2D_tooltipsAndHittest_MetaData",
...metaDataExampleInfo
},
chart2D_tooltipsAndHittest_DataPointSelection: {
id: "chart2D_tooltipsAndHittest_DataPointSelection",
...dataPointSelectionExampleInfo
},
chart2D_tooltipsAndHittest_SeriesSelection: {
id: "chart2D_tooltipsAndHittest_SeriesSelection",
...seriesSelectionExampleInfo
},
chart2D_zoomAndPanAChart_DragAxisToScale: {
id: "chart2D_zoomAndPanAChart_DragAxisToScale",
...dragAxisToScaleExampleInfo
},
chart2D_zoomAndPanAChart_RealtimeZoomPan: {
id: "chart2D_zoomAndPanAChart_RealtimeZoomPan",
...realtimeZoomPanExampleInfo
},
chart2D_zoomAndPanAChart_MultipleChartModifiers: {
id: "chart2D_zoomAndPanAChart_MultipleChartModifiers",
...zoomAndPanWithMultipleChartModifiersExampleInfo
},
chart2D_zoomAndPanAChart_Overview: {
id: "chart2D_zoomAndPanAChart_Overview",
...overviewExampleInfo
},
chart2D_zoomAndPanAChart_VirtualizedDataOverview: {
id: "chart2D_zoomAndPanAChart_VirtualizedDataOverview",
...virtualizedDataOverviewExampleInfo
},
chart2D_filters_PercentageChange: {
id: "chart2D_filters_PercentageChange",
...percentageChangeExampleInfo
},
chart2D_filters_TrendMARatio: {
id: "chart2D_filters_TrendMARatio",
...trendMARatioExampleInfo
},
chart2D_filters_CustomFilters: {
id: "chart2D_filters_CustomFilters",
...customFiltersExampleInfo
},
chart3D_basic3DChartTypes_Bubble3DChart: {
id: "chart3D_basic3DChartTypes_Bubble3DChart",
...bubble3DChartExampleInfo
},
chart3D_basic3DChartTypes_SurfaceMesh3DChart: {
id: "chart3D_basic3DChartTypes_SurfaceMesh3DChart",
...surfaceMesh3DChartExampleInfo
},
featuredApps_performanceDemos_Load500By500: {
id: "featuredApps_performanceDemos_Load500By500",
...load500By500ExampleInfo
},
featuredApps_performanceDemos_RealtimePerformanceDemo: {
id: "featuredApps_performanceDemos_RealtimePerformanceDemo",
...realtimePerformanceDemoExampleInfo
},
featuredApps_medicalCharts_VitalSignsMonitorDemo: {
id: "featuredApps_medicalCharts_VitalSignsMonitorDemo",
...vitalSignsMonitorDemoExampleInfo
},
featuredApps_featureDemos_axisTypes: {
id: "featuredApps_featureDemos_axisTypes",
...axisTypesExampleInfo
},
featuredApps_featureDemos_axisLayout: {
id: "featuredApps_featureDemos_axisLayout",
...axisLayoutExampleInfo
},
featuredApps_scientificCharts_Lidar3DPointCloudDemo: {
id: "featuredApps_scientificCharts_Lidar3DPointCloudDemo",
...lidar3DPointCloudExampleInfo
},
featuredApps_scientificCharts_AudioAnalyzerDemo: {
id: "featuredApps_scientificCharts_AudioAnalyzerDemo",
...audioAnalyzerExampleInfo
},
featuredApps_scientificCharts_TenorCurvesDemo: {
id: "featuredApps_scientificCharts_TenorCurvesDemo",
...tenorCurvesExampleInfo
},
featuredApps_showcases_realtimebigdata : {
id: "featuredApps_showcases_realtimebigdata",
...websocketBigDataDemoExampleInfo
},
featuredApps_showcases_oilandgasdashboard : {
id: "featuredApps_showcases_oilandgasdashboard",
...oilAndGasExplorerDashboard
},
featuredApps_showcases_richInteractions : {
id: "featuredApps_showcases_richInteractions",
...heatmapInteractionsExampleInfo
},
builderApi_simplechart: {
id: "builderApi_simplechart",
...simpleChartExampleInfo
},
builderApi_fullchart: {
id: "builderApi_fullchart",
...fullChartExampleInfo
},
builderApi_chartFromJSON: {
id: "builderApi_chartFromJSON",
...chartFromJSONExampleInfo
},
builderApi_SharedData: {
id: "builderApi_SharedData",
...sharedDataExampleInfo
},
builderApi_CustomTypes: {
id: "builderApi_CustomTypes",
...customTypesExampleInfo
}
});