This repository was archived by the owner on Jul 30, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathconfig.js
More file actions
99 lines (99 loc) · 23.3 KB
/
config.js
File metadata and controls
99 lines (99 loc) · 23.3 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
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.ChartSampleOrder = [
{ 'path': 'chart/line', 'component': 'Line', 'name': 'Line', 'description': 'This demo for Essential JS2 Chart control shows how to render the line series.', 'order': '01', 'category': 'Line Charts' },
{ 'path': 'chart/spline', 'component': 'Spline', 'name': 'Spline', 'description': 'This demo for Essential JS2 Chart control shows how to render the spline series.', 'order': '01', 'category': 'Line Charts' },
{ 'path': 'chart/step-line', 'component': 'StepLine', 'name': 'Step Line', 'description': 'This demo for Essential JS2 Chart control shows how to render the step line series.', 'order': '01', 'category': 'Line Charts' },
{ 'path': 'chart/dashed-line', 'component': 'DashedLine', 'name': 'Dashed Line', 'description': 'This demo for Essential JS2 Chart control shows how to render the dashed line series.', 'order': '01', 'category': 'Line Charts' },
{ 'path': 'chart/spline-inversed', 'component': 'SplineInversed', 'name': 'Inversed Spline', 'description': 'This demo for Essential JS2 Chart control shows how to render the inversed spline series.', 'order': '01', 'category': 'Line Charts' },
{ 'path': 'chart/line-segments', 'component': 'LineZone', 'name': 'Line Zone', 'description': 'This demo for Essential JS2 Chart control shows how to render and configure the points in a particular range using MultiColoredLine series.', 'order': '01', 'category': 'Line Charts' },
{ 'path': 'chart/line-multi-color', 'component': 'LineMultiLine', 'description': 'This demo for Essential JS2 Chart control shows how to render the multi colored line series.', 'name': 'Multi Colored Line', 'order': '01', 'category': 'Line Charts' },
{ 'path': 'chart/area', 'component': 'Area', 'name': 'Area', 'description': 'This demo for Essential JS2 Chart control shows how to render the area series.', 'order': '02', 'category': 'Area Charts' },
{ 'path': 'chart/spline-area', 'component': 'SplineArea', 'name': 'Spline Area', 'description': 'This demo for Essential JS2 Chart control shows how to render the spline area series.', 'order': '02', 'category': 'Area Charts' },
{ 'path': 'chart/step-area', 'component': 'StepArea', 'name': 'Step Area', 'description': 'This demo for Essential JS2 Chart control shows how to render the step area series.', 'order': '02', 'category': 'Area Charts' },
{ 'path': 'chart/range-area', 'component': 'RangeArea', 'name': 'Range Area', 'description': 'This demo for Essential JS2 Chart control shows how to render the range area series.', 'order': '02', 'category': 'Area Charts' },
{ 'path': 'chart/stacked-area', 'component': 'StackedArea', 'name': 'Stacked Area', 'description': 'This demo for Essential JS2 Chart control shows how to render the stacking area series.', 'order': '02', 'category': 'Area Charts' },
{ 'path': 'chart/stacked-area-100', 'component': 'StackedArea100', 'name': '100% Stacked Area', 'description': 'This demo for Essential JS2 Chart control shows how to render the 100 percent stacking area series.', 'order': '02', 'category': 'Area Charts' },
{ 'path': 'chart/area-empty', 'component': 'AreaEmpty', 'name': 'Area - Empty Points', 'description': 'This demo for Essential JS2 Chart control shows how to render the area series with empty points.', 'order': '02', 'category': 'Area Charts' },
{ 'path': 'chart/area-segments', 'component': 'AreaMultiColored', 'name': 'Area Zone', 'description': 'This demo for Essential JS2 Chart control shows how to render and configure the points in a particular range using MultiColoredArea series.', 'order': '02', 'category': 'Area Charts' },
{ 'path': 'chart/column', 'component': 'Column', 'name': 'Column', 'description': 'This demo for Essential JS2 Chart control shows how to render the column series.', 'order': '03', 'category': 'Bar Charts' },
{ 'path': 'chart/rounded-column', 'component': 'RoundedColumn', 'name': 'Rounded Column', 'description': 'This demo for Essential JS2 Chart control shows how to render the rounded column series.', 'order': '03', 'category': 'Bar Charts' },
{ 'path': 'chart/column-placement', 'component': 'ColumnPlacement', 'name': 'Back to Back Column', 'description': 'This demo for Essential JS2 Chart control shows how to render and configure the column charts.', 'order': '03', 'category': 'Bar Charts' },
{ 'path': 'chart/range-column', 'component': 'RangeColumn', 'name': 'Range Column', 'description': 'This demo for Essential JS2 Chart control shows how to render the range column series.', 'order': '03', 'category': 'Bar Charts' },
{ 'path': 'chart/range-bar', 'component': 'RangeBar', 'name': 'Inversed Range Column', 'description': 'This demo for Essential JS2 Chart control shows how to render the inversed range column series.', 'order': '03', 'category': 'Bar Charts' },
{ 'path': 'chart/bar', 'component': 'Bar', 'name': 'Bar', 'description': 'This demo for Essential JS2 Chart control shows how to render bar series.', 'order': '03', 'category': 'Bar Charts' },
{ 'path': 'chart/stacked-column', 'component': 'StackedColumn', 'name': 'Stacked Column', 'description': 'This demo for Essential JS2 Chart control shows how to render the stacking column series.', 'order': '03', 'category': 'Bar Charts' },
{ 'path': 'chart/stacked-column-100', 'component': 'StackedColumn100', 'name': '100% Stacked Column', 'description': 'This demo for Essential JS2 Chart control shows how to render the 100 percent stacking column series.', 'order': '03', 'category': 'Bar Charts' },
{ 'path': 'chart/stacked-bar', 'component': 'StackedBar', 'name': 'Stacked Bar', 'description': 'This demo for Essential JS2 Chart control shows how to render the stacking bar series.', 'order': '03', 'category': 'Bar Charts' },
{ 'path': 'chart/stacked-bar-100', 'component': 'StackedBar100', 'name': '100% Stacked Bar', 'description': 'This demo for Essential JS2 Chart control shows how to render the 100 percent stacking bar series.', 'order': '03', 'category': 'Bar Charts' },
{ 'path': 'chart/tornado', 'component': 'NegativeStack', 'name': 'Negative Stack', 'description': 'This demo for Essential JS2 Chart control shows how to render and configure the bar charts.', 'order': '03', 'category': 'Bar Charts' },
{ 'path': 'chart/hilo', 'component': 'Hilo', 'name': 'Hilo', 'description': 'This demo for Essential JS2 Chart control shows how to render the hilo series.', 'order': '04', 'category': 'Stock Charts' },
{ 'path': 'chart/hilo-open-close', 'component': 'HiloOpenClose', 'name': 'Hilo Open Close', 'description': 'This demo for Essential JS2 Chart control shows how to render the hilo open close series.', 'order': '04', 'category': 'Stock Charts' },
{ 'path': 'chart/candle-stick', 'component': 'Candle', 'name': 'Candle Stick', 'description': 'This demo for Essential JS2 Chart control shows how to render the candle series.', 'order': '04', 'category': 'Stock Charts' },
{ 'path': 'chart/scatter-plot', 'component': 'Scatter', 'name': 'Scatter Plot', 'description': 'This demo for Essential JS2 Chart control shows how to render the scatter series.', 'order': '05', 'category': 'Scatter and Bubble' },
{ 'path': 'chart/bubble', 'component': 'Bubble', 'name': 'Bubble', 'description': 'This demo for Essential JS2 Chart control shows how to render the bubble series.', 'order': '05', 'category': 'Scatter and Bubble' },
{ 'path': 'chart/waterfall', 'component': 'Waterfall', 'name': 'Waterfall', 'description': 'This demo for Essential JS2 Chart control shows how to render the waterfall series.', 'order': '06', 'category': 'Other Types' },
{ 'path': 'chart/histogram', 'component': 'Histogram', 'name': 'Histogram', 'description': 'This demo for Essential JS2 Chart control shows how to render the histogram series.', 'order': '06', 'category': 'Other Types' },
{ 'path': 'chart/box-and-whisker', 'component': 'BoxWhisker', 'name': 'Box and Whisker', 'description': 'This demo for Essential JS2 Chart control shows how to render the box and whisker series.', 'order': '06', 'category': 'Other Types' },
{ 'path': 'chart/error-bar', 'component': 'ErrorBarChart', 'name': 'Error Bar', 'description': 'This demo for Essential JS2 Chart control shows how to render and configure the error bars in charts.', 'order': '06', 'category': 'Other Types' },
{ 'path': 'chart/trend-lines', 'component': 'Trend', 'name': 'Trendlines', 'description': 'This demo for Essential JS2 Chart control shows how to render and configure the trend lines in charts.', 'order': '06', 'category': 'Other Types' },
{ 'path': 'chart/multi-series-chart', 'component': 'CombinationSeries', 'name': 'Multi-Series Chart', 'description': 'This demo for Essential JS2 Chart control shows how to combine different types of charts.', 'order': '06', 'category': 'Other Types' },
{ 'path': 'chart/pareto', 'component': 'ParetoChart', 'name': 'Pareto Chart', 'description': 'This demo for Essential JS2 Chart control shows how to render pareto charts.', 'order': '06', 'category': 'Other Types', 'type': 'New' },
{ 'path': 'chart/accumulation-distribution-indicator', 'component': 'AccumulationDistribution', 'name': 'Accumulation Distribution', 'description': 'This demo for Essential JS2 Chart control shows how to render and configure the accumulation distribution indicator.', 'order': '07', 'category': 'Technical Indicators' },
{ 'path': 'chart/average-true-range-indicator', 'component': 'ATR', 'name': 'ATR', 'description': 'This demo for Essential JS2 Chart control shows how to render and configure the average true range indicator.', 'order': '07', 'category': 'Technical Indicators' },
{ 'path': 'chart/bollinger', 'component': 'Bollinger', 'name': 'Bollinger', 'description': 'This demo for Essential JS2 Chart control shows how to render and configure the bollinger band type indicator.', 'order': '07', 'category': 'Technical Indicators' },
{ 'path': 'chart/exponential-moving-average-indicator', 'component': 'EMA', 'name': 'EMA', 'description': 'This demo for Essential JS2 Chart control shows how to render and configure the exponential moving average indicator.', 'order': '07', 'category': 'Technical Indicators' },
{ 'path': 'chart/moving-average-convergence-divergence-indicator', 'component': 'Macd', 'name': 'MACD', 'description': 'This demo for Essential JS2 Chart control shows how to render and configure the moving average convergence divergence indicator.', 'order': '07', 'category': 'Technical Indicators' },
{ 'path': 'chart/momentum', 'component': 'Momentum', 'name': 'Momentum', 'description': 'This demo for Essential JS2 Chart control shows how to render and configure the momentum indicator.', 'order': '07', 'category': 'Technical Indicators' },
{ 'path': 'chart/relative-strength-index-indicator', 'component': 'RSI', 'name': 'RSI', 'description': 'This demo for Essential JS2 Chart control shows how to render and configure the relative strength index indicator.', 'order': '07', 'category': 'Technical Indicators' },
{ 'path': 'chart/simple-moving-average-indicator', 'component': 'SMA', 'name': 'SMA', 'description': 'This demo for Essential JS2 Chart control shows how to render and configure the simple moving average indicator.', 'order': '07', 'category': 'Technical Indicators' },
{ 'path': 'chart/stochastic', 'component': 'Stochastic', 'name': 'Stochastic', 'description': 'This demo for Essential JS2 Chart control shows how to render and configure the stochastic indicator.', 'order': '07', 'category': 'Technical Indicators' },
{ 'path': 'chart/triangular-moving-average-indicator', 'component': 'TMA', 'name': 'TMA', 'description': 'This demo for Essential JS2 Chart control shows how to render and configure the triangular moving average indicator.', 'order': '07', 'category': 'Technical Indicators' },
{ 'path': 'chart/chart-performance', 'component': 'Performance', 'name': 'Chart Performance', 'description': 'This demo for Essential JS2 Chart control shows the performance when plotting large volumes of data and handling high frequency real-time data.', 'order': '08', 'category': 'Benchmark' },
{ 'path': 'chart/default-pie', 'component': 'Pie', 'name': 'Pie', 'description': 'This demo for Essential JS2 Chart control shows how to render and configure the pie charts.', 'order': '09', 'category': 'Accumulation Charts' },
{ 'path': 'chart/donut', 'component': 'AccumulationDoughnut', 'name': 'Donut', 'description': 'This demo for Essential JS2 Chart control shows how to render and configure the doughnut charts.', 'order': '09', 'category': 'Accumulation Charts', 'type': 'update' },
{ 'path': 'chart/pyramid', 'component': 'Pyramid', 'name': 'Pyramid', 'description': 'This demo for Essential JS2 Chart control shows how to render and configure the pyramid charts.', 'order': '09', 'category': 'Accumulation Charts' },
{ 'path': 'chart/funnel', 'component': 'Funnel', 'name': 'Funnel', 'description': 'This demo for Essential JS2 Chart control shows how to render and configure the funnel charts.', 'order': '09', 'category': 'Accumulation Charts' },
{ 'path': 'chart/default-doughnut', 'component': 'Doughnut', 'name': 'Pie With Legend', 'description': 'This demo for Essential JS2 Chart control shows how to render and configure the legends in pie charts.', 'order': '09', 'category': 'Accumulation Charts' },
{ 'path': 'chart/semi-pie', 'component': 'SemiPie', 'name': 'Semi Pie', 'description': 'This demo for Essential JS2 Chart control shows how to render semi-pie and doughnut charts.', 'order': '09', 'category': 'Accumulation Charts' },
{ 'path': 'chart/smart-labels', 'component': 'SmartLabels', 'name': 'Smart Labels', 'description': 'This demo for Essential JS2 Chart control shows how to arrange the labels smartly without overlapping with each other.', 'order': '09', 'category': 'Accumulation Charts' },
{ 'path': 'chart/drill-down-pie', 'component': 'Drilldown', 'name': 'Drilldown', 'description': 'This demo for Essential JS2 Chart control shows how to achieve the drill-down concept using pie charts.', 'order': '09', 'category': 'Accumulation Charts' },
{ 'path': 'chart/grouping', 'component': 'Grouping', 'name': 'Grouping', 'description': 'This demo for Essential JS2 Chart control shows how to group points in pie charts.', 'order': '09', 'category': 'Accumulation Charts', 'type': 'update' },
{ 'path': 'chart/pie-empty-point', 'component': 'PieEmptyPoint', 'name': 'Empty Points', 'description': 'This demo for Essential JS2 Chart control shows how to render and configure the empty points.', 'order': '09', 'category': 'Accumulation Charts' },
{ 'path': 'chart/polar-line', 'component': 'PolarLine', 'name': 'Line', 'description': 'This demo for Essential JS2 Chart control shows how to render line in polar and radar charts.', 'order': '10', 'category': 'Polar Radar' },
{ 'path': 'chart/polar-spline', 'component': 'PolarSpline', 'name': 'Spline', 'description': 'This demo for Essential JS2 Chart control shows how to render spline in polar and radar charts.', 'order': '10', 'category': 'Polar Radar' },
{ 'path': 'chart/polar-area', 'component': 'PolarArea', 'name': 'Area', 'description': 'This demo for Essential JS2 Chart control shows how to render area in polar and radar charts.', 'order': '10', 'category': 'Polar Radar' },
{ 'path': 'chart/polar-stacking-area', 'component': 'PolarStackedArea', 'name': 'Stacked Area', 'description': 'This demo for Essential JS2 Chart control shows how to render stacking area in polar and radar charts.', 'order': '10', 'category': 'Polar Radar' },
{ 'path': 'chart/polar-scatter', 'component': 'PolarScatter', 'name': 'Scatter', 'description': 'This demo for Essential JS2 Chart control shows how to render scatter in polar and radar charts.', 'order': '10', 'category': 'Polar Radar' },
{ 'path': 'chart/polar-column', 'component': 'PolarColumn', 'name': 'Column', 'description': 'This demo for Essential JS2 Chart control shows how to render column in polar and radar charts.', 'order': '10', 'category': 'Polar Radar' },
{ 'path': 'chart/polar-stacking-column', 'component': 'PolarStackedColumn', 'name': 'Wind Rose', 'description': 'This demo for Essential JS2 Chart control shows how to render wind rose using stacking column in polar and radar charts.', 'order': '10', 'category': 'Polar Radar' },
{ 'path': 'chart/polar-range-column', 'component': 'PolarRangeColumn', 'name': 'Range Column', 'description': 'This demo for Essential JS2 Chart control shows how to render range column in polar and radar charts.', 'order': '10', 'category': 'Polar Radar' },
{ 'path': 'chart/local-data', 'component': 'LocalData', 'name': 'Local Data', 'description': 'This demo for Essential JS2 Chart control shows how to bind JSON data to chart.', 'order': '11', 'category': 'Data Binding' },
{ 'path': 'chart/remote-data', 'component': 'RemoteData', 'name': 'Remote Data', 'description': 'This demo for Essential JS2 Chart control shows how to consume data from remote data service.', 'order': '11', 'category': 'Data Binding' },
{ 'path': 'chart/numeric', 'component': 'Numeric', 'name': 'Numeric Axis', 'description': 'This demo for Essential JS2 Chart control shows how to plot numeric data with the help of numeric axis in charts.', 'order': '12', 'category': 'Chart Axes' },
{ 'path': 'chart/date-time', 'component': 'DateTimeAxis', 'name': 'DateTime Axis', 'description': 'This demo for Essential JS2 Chart control shows how to render the date-time axis in charts.', 'order': '12', 'category': 'Chart Axes' },
{ 'path': 'chart/date-time-category', 'component': 'DatetimeCategoryAxis', 'name': 'DateTime Category Axis', 'description': 'This demo for Essential JS2 Chart control shows how to render the date-time category axis in charts.', 'order': '12', 'category': 'Chart Axes' },
{ 'path': 'chart/category', 'component': 'CategoryAxis', 'name': 'Category Axis', 'description': 'This demo for Essential JS2 Chart control shows how to render the category axis in charts.', 'order': '12', 'category': 'Chart Axes', 'type': 'update' },
{ 'path': 'chart/indexed-axis', 'component': 'IndexedAxis', 'name': 'Indexed Category Axis', 'description': 'This demo for Essential JS2 Chart control shows how to render the indexed category axis in charts.', 'order': '12', 'category': 'Chart Axes' },
{ 'path': 'chart/logarithmic-scale', 'component': 'LogAxis', 'name': 'Logarithmic Scale', 'description': 'This demo for Essential JS2 Chart control shows how to render the logarithmic axis in charts.', 'order': '12', 'category': 'Chart Axes' },
{ 'path': 'chart/multiple-axis', 'component': 'MultipleAxis', 'name': 'Multiple Axis', 'description': 'This demo for Essential JS2 Chart control shows how to render and configure the mulitple axis in charts.', 'order': '12', 'category': 'Chart Axes' },
{ 'path': 'chart/inversed', 'component': 'InversedAxis', 'name': 'Inversed Axis', 'description': 'This demo for Essential JS2 Chart control shows how to invert the axis in charts.', 'order': '12', 'category': 'Chart Axes' },
{ 'path': 'chart/strip-line', 'component': 'Stripline', 'name': 'Strip Line', 'description': 'This demo for Essential JS2 Chart control shows how to render and configure the strip lines in charts.', 'order': '12', 'category': 'Chart Axes', 'type': 'update' },
{ 'path': 'chart/strip-line-recurrence', 'component': 'Striplinerecurrence', 'name': 'Strip Line Recurrence', 'description': 'This demo for Essential JS2 Chart control shows how to render the strip line recurrence in charts.', 'order': '12', 'category': 'Chart Axes', 'type': 'New' },
{ 'path': 'chart/smart-axis-labels', 'component': 'SmartAxisLabels', 'name': 'Smart Labels', 'description': 'This demo for Essential JS2 Chart control shows how to arrange the labels smartly without overlapping with each other.', 'order': '12', 'category': 'Chart Axes', 'type': 'update' },
{ 'path': 'chart/multi-level-label', 'component': 'Multilevellabels', 'name': 'Multi Level Labels', 'description': 'This demo for Essential JS2 Chart control shows how to group the axis labels.', 'order': '12', 'category': 'Chart Axes' },
{ 'path': 'chart/axes-crossing', 'component': 'AxisCrossing', 'name': 'Axes Crossing', 'description': 'This demo for Essential JS2 Chart control demonstrates the axis crossing behavior in chart.', 'order': '12', 'category': 'Chart Axes' },
{ 'path': 'chart/sorting', 'component': 'Sorting', 'name': 'Sorting', 'description': 'This demo for Essential JS2 Chart control shows how to sort the series data in chart.', 'order': '13', 'category': 'Chart Customization' },
{ 'path': 'chart/marker-chart', 'component': 'Symbols', 'name': 'Marker Chart', 'description': 'This demo for Essential JS2 Chart control shows how to render the marker symbols for data points.', 'order': '13', 'category': 'Chart Customization' },
{ 'path': 'chart/pie-annotation', 'component': 'Annotation', 'name': 'Annotation', 'description': 'This demo for Essential JS2 Chart control shows how to add more information to the chart using annotation.', 'order': '13', 'category': 'Chart Customization' },
{ 'path': 'chart/data-label-template', 'component': 'DataLabelTemplate', 'name': 'DataLabel Template', 'description': 'This demo for Essential JS2 Chart control shows how to render and configure the data label template.', 'order': '13', 'category': 'Chart Customization', 'type': 'update' },
{ 'path': 'chart/vertical', 'component': 'VerticalChart', 'name': 'Vertical Chart', 'description': 'This demo for Essential JS2 Chart control shows how to render and configure the vertical type charts.', 'order': '13', 'category': 'Chart Customization' },
{ 'path': 'chart/empty-point', 'component': 'EmptyPoint', 'name': 'Empty Points', 'description': 'This demo for Essential JS2 Chart control shows how to render and configure the empty points.', 'order': '13', 'category': 'Chart Customization', 'type': 'update' },
{ 'path': 'chart/print', 'component': 'Print', 'name': 'Print', 'description': 'This demo for Essential JS2 Chart control shows how to print the charts.', 'order': '14', 'category': 'Print and Export' },
{ 'path': 'chart/export', 'component': 'Export', 'name': 'Export', 'description': 'This demo for Essential JS2 Chart control shows how to export the charts to Excel, PDF, and image formats such as SVG, JPEG, and PNG at client-side.', 'order': '14', 'category': 'Print and Export' },
{ 'path': 'chart/selection', 'component': 'SelectionChart', 'name': 'Selection', 'description': 'This demo for Essential JS2 Chart control demonstrates the selection behavior in chart.', 'order': '15', 'category': 'User Interaction' },
{ 'path': 'chart/range-selection', 'component': 'RangeSelection', 'name': 'Range Selection', 'description': 'This demo for Essential JS2 Chart control demonstrates the range selection in chart.', 'order': '15', 'category': 'User Interaction' },
{ 'path': 'chart/cross-hair', 'component': 'CrosshairChart', 'name': 'Crosshair', 'description': 'This demo for Essential JS2 Chart control demonstrates the crosshair behavior in chart.', 'order': '15', 'category': 'User Interaction' },
{ 'path': 'chart/trackball', 'component': 'TrackballChart', 'name': 'Trackball', 'description': 'This demo for Essential JS2 Chart control demonstrates the trackball behavior in chart.', 'order': '15', 'category': 'User Interaction' },
{ 'path': 'chart/zooming', 'component': 'Zooming', 'name': 'Zooming and Panning', 'description': 'This demo for Essential JS2 Chart control demonstrates the zooming and panning behavior in chart.', 'order': '15', 'category': 'User Interaction' }
];