Skip to content

Commit fd805b3

Browse files
author
pipeline
committed
bug(EJ2-4832): labels removed in chart and gauges
1 parent d43e1df commit fd805b3

File tree

2 files changed

+18
-18
lines changed

2 files changed

+18
-18
lines changed

src/chart/chart.module.ts

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -61,32 +61,32 @@ export const chartAppRoutes: Object[] = [
6161
{ path: ':theme/chart/stacked-area100', component: PercentStackedAreaChartComponent, name: '100% Stacked Area',order:'01',category: 'Series' },
6262
{ path: ':theme/chart/range-column', component: RangeColumnChartComponent, name: 'Range Column',order:'01',category: 'Series' },
6363
{ path: ':theme/chart/step-line', component: StepLineChartComponent, name: 'StepLine', order:'01',category: 'Series' },
64-
{ path: ':theme/chart/step-area', component: StepAreaChartComponent, name: 'StepArea', order:'01',category: 'Series',type:'new' },
64+
{ path: ':theme/chart/step-area', component: StepAreaChartComponent, name: 'StepArea', order:'01',category: 'Series' },
6565
{ path: ':theme/chart/scatter', component: ScatterChartComponent, name: 'Scatter', order:'01',category: 'Series' },
6666
{ path: ':theme/chart/bubble', component: BubbleChartComponent, name: 'Bubble', order:'01', category: 'Series'},
6767
{ path: ':theme/chart/combination-series', component: CombinationSeriesChartComponent, name: 'Combination Series',
6868
order:'01', category: 'Series' },
6969
{ path: ':theme/chart/performance', component: PerformanceChartComponent, name: 'Performance',order:'01', category: 'Series' },
70-
{ path: ':theme/chart/default-pie', component: DefaultPieComponent, name: 'Pie', order: '02', category: 'Accumulation Series', type: 'new'},
70+
{ path: ':theme/chart/default-pie', component: DefaultPieComponent, name: 'Pie', order: '02', category: 'Accumulation Series' },
7171
{
7272
path: ':theme/chart/default-doughnut', component: DefaultDoughnutComponent, name: 'Pie With Legend', order: '02',
73-
category: 'Accumulation Series', type: 'new'
73+
category: 'Accumulation Series'
7474
},
7575
{
7676
path: ':theme/chart/semi-pie', component: SemiPieComponent, name: 'Semi Accumulation Series', order: '02',
77-
category: 'Accumulation Series', type: 'new'
77+
category: 'Accumulation Series'
7878
},
7979
{
8080
path: ':theme/chart/smart-labels', component: SmartLabelsComponent, name: 'Smart Labels', order: '02',
81-
category: 'Accumulation Series', type: 'new'
81+
category: 'Accumulation Series'
8282
},
8383
{
8484
path: ':theme/chart/drilldown-pie', component: DrilldownPieComponent, name: 'Drilldown', order: '02',
85-
category: 'Accumulation Series', type: 'new'
85+
category: 'Accumulation Series'
8686
},
8787
{
8888
path: ':theme/chart/grouping', component: GroupingPieComponent, name: 'Grouping', order: '02',
89-
category: 'Accumulation Series', type: 'new'
89+
category: 'Accumulation Series'
9090
},
9191
{ path: ':theme/chart/local-data', component: LocalDataChartComponent, name: 'Local Data', order:'03',category: 'Data Binding' },
9292
{ path: ':theme/chart/remote-data', component: RemoteDataChartComponent, name: 'Remote Data',order:'03', category: 'Data Binding' },
@@ -95,10 +95,10 @@ export const chartAppRoutes: Object[] = [
9595
{ path: ':theme/chart/category', component: CategoryChartComponent, name: 'Category Axis', order:'04', category: 'Chart Axes' },
9696
{ path: ':theme/chart/logarithmic', component: LogarithmicAxisChartComponent, name: 'Logarithmic Axis', order:'04', category: 'Chart Axes' },
9797
{ path: ':theme/chart/multiple-axes', component: MultipleAxesChartComponent, name: 'Multiple Axes',order:'04', category: 'Chart Axes' },
98-
{ path: ':theme/chart/inversed', component: InversedAxisChartComponent, name: 'Inversed Axes', order:'04', category: 'Chart Axes', type: 'new'},
98+
{ path: ':theme/chart/inversed', component: InversedAxisChartComponent, name: 'Inversed Axes', order:'04', category: 'Chart Axes'},
9999
{ path: ':theme/chart/symbols', component: SymbolsChartComponent, name: 'Symbols',order:'05', category: 'Chart Customization' },
100-
{ path: ':theme/chart/annotation', component: AnnotationChartComponent, name: 'Annotation', order: '05', category: 'Chart Customization', type: 'new'},
101-
{ path: ':theme/chart/datalabel-template', component: DataLabelComponent, name: 'Datalabel Template', order: '05', category: 'Chart Customization', type: 'new' },
100+
{ path: ':theme/chart/annotation', component: AnnotationChartComponent, name: 'Annotation', order: '05', category: 'Chart Customization' },
101+
{ path: ':theme/chart/datalabel-template', component: DataLabelComponent, name: 'Datalabel Template', order: '05', category: 'Chart Customization' },
102102
{ path: ':theme/chart/selection', component: SelectionChartComponent, name: 'Selection',order:'06', category: 'User Interaction' },
103103
{ path: ':theme/chart/crosshair', component: CrosshairChartComponent, name: 'Crosshair',order:'06', category: 'User Interaction' },
104104
{ path: ':theme/chart/trackball', component: TrackBallChartComponent, name: 'TrackBall', order:'06',category: 'User Interaction' },

src/common/samplelist.ts

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -25,13 +25,13 @@ import { contextMenuAppRoutes } from '../contextmenu/contextmenu.module';
2525
import { tabAppRoutes } from '../tab/tab.module';
2626
export let samplesList: any = [
2727
{
28-
'name': 'Chart', 'category': 'Datavisualization', 'order': '01', 'path': 'chart', 'samples': chartAppRoutes, 'type': 'update'
28+
'name': 'Chart', 'category': 'Datavisualization', 'order': '01', 'path': 'chart', 'samples': chartAppRoutes
2929
},
3030
{
31-
'name': 'CircularGauge', 'category': 'Datavisualization', 'order': '01', 'path': 'circulargauge', 'samples': circulargaugeAppRoutes, "type": "new"
31+
'name': 'CircularGauge', 'category': 'Datavisualization', 'order': '01', 'path': 'circulargauge', 'samples': circulargaugeAppRoutes
3232
},
3333
{
34-
'name': 'LinearGauge', 'category': 'Datavisualization', 'order': '01', 'path': 'lineargauge', 'samples': lineargaugeAppRoutes, "type": "new"
34+
'name': 'LinearGauge', 'category': 'Datavisualization', 'order': '01', 'path': 'lineargauge', 'samples': lineargaugeAppRoutes
3535
},
3636
{
3737
'name': 'Grid', 'category': 'Grids', 'order': '02', 'path': 'grid', 'samples': gridRouteConfig
@@ -55,13 +55,13 @@ export let samplesList: any = [
5555
'name': 'DropDownList', 'category': 'Editors', 'order': '03', 'path': 'dropdownlist', 'samples': dropdownlistAppRoutes
5656
},
5757
{
58-
'name': 'ComboBox', 'category': 'Editors', 'order': '03', 'path': 'combobox', 'samples': comboboxAppRoutes, 'type': 'new'
58+
'name': 'ComboBox', 'category': 'Editors', 'order': '03', 'path': 'combobox', 'samples': comboboxAppRoutes
5959
},
6060
{
61-
'name': 'AutoComplete', 'category': 'Editors', 'order': '03', 'path': 'autocomplete', 'samples': autoCompleteAppRoutes, 'type': 'new'
61+
'name': 'AutoComplete', 'category': 'Editors', 'order': '03', 'path': 'autocomplete', 'samples': autoCompleteAppRoutes
6262
},
6363
{
64-
"name": "MultiSelect", "category": "Editors", 'order': '03', "path": "multiselect", "samples": multiselectAppRoutes, "type": "new"
64+
"name": "MultiSelect", "category": "Editors", 'order': '03', "path": "multiselect", "samples": multiselectAppRoutes
6565
},
6666
{
6767
"name": "TimePicker", "category": "Editors", 'order': '03', "path": "timepicker", "samples": timePickerAppRoutes
@@ -85,13 +85,13 @@ export let samplesList: any = [
8585
'name': 'Toolbar', 'category': 'Navigation', 'order': '05', 'path': 'toolbar', 'samples': toolbarAppRoutes
8686
},
8787
{
88-
'name': 'TreeView', 'category': 'Navigation', 'order': '05', 'path': 'treeview', 'samples': treeAppRoutes, "type": "new"
88+
'name': 'TreeView', 'category': 'Navigation', 'order': '05', 'path': 'treeview', 'samples': treeAppRoutes
8989
},
9090
{
9191
'name': 'Tooltip', 'category': 'Layout', 'order': '04', 'path': 'tooltip', 'samples': tooltipAppRoutes
9292
},
9393
{
94-
'name': 'MaskedTextBox', 'category': 'Editors', 'order': '03', 'path': 'maskedtextbox', 'samples': maskedTextBoxAppRoutes, "type": "new"
94+
'name': 'MaskedTextBox', 'category': 'Editors', 'order': '03', 'path': 'maskedtextbox', 'samples': maskedTextBoxAppRoutes
9595
},
9696
{
9797
'name': 'ContextMenu', 'category': 'Navigation', 'order': '05', 'path': 'contextmenu', 'samples': contextMenuAppRoutes, "type": "new"

0 commit comments

Comments
 (0)