@@ -42,6 +42,7 @@ import { SemiPieComponent } from './semi-pie.component';
42
42
import { SmartLabelsComponent } from './smart-labels.component' ;
43
43
import { DrilldownPieComponent } from './drilldown-pie.component' ;
44
44
import { GroupingPieComponent } from './grouping.component' ;
45
+ import { InversedAxisChartComponent } from './inversed.component' ;
45
46
import { SharedModule } from '../common/shared.module' ;
46
47
export const chartAppRoutes : Object [ ] = [
47
48
{ path : 'chart/line' , component : LineChartComponent , name : 'Line' , order :'01' , category : 'Series' } ,
@@ -92,6 +93,7 @@ export const chartAppRoutes: Object[] = [
92
93
{ path : 'chart/category' , component : CategoryChartComponent , name : 'Category Axis' , order :'04' , category : 'Chart Axes' } ,
93
94
{ path : 'chart/logarithmic' , component : LogarithmicAxisChartComponent , name : 'Logarithmic Axis' , order :'04' , category : 'Chart Axes' } ,
94
95
{ path : 'chart/multiple-axes' , component : MultipleAxesChartComponent , name : 'Multiple Axes' , order :'04' , category : 'Chart Axes' } ,
96
+ { path : 'chart/inversed' , component : InversedAxisChartComponent , name : 'Inversed Axes' , order :'04' , category : 'Chart Axes' , type : 'new' } ,
95
97
{ path : 'chart/symbols' , component : SymbolsChartComponent , name : 'Symbols' , order :'05' , category : 'Chart Symbols' } ,
96
98
{ path : 'chart/selection' , component : SelectionChartComponent , name : 'Selection' , order :'06' , category : 'User Interaction' } ,
97
99
{ path : 'chart/crosshair' , component : CrosshairChartComponent , name : 'Crosshair' , order :'06' , category : 'User Interaction' } ,
@@ -107,7 +109,7 @@ let declarations: Type<Object>[] = [LineChartComponent, ColumnChartComponent, Ba
107
109
CrosshairChartComponent , TrackBallChartComponent , ZoomingChartComponent , LocalDataChartComponent , RemoteDataChartComponent ,
108
110
PercentStackedAreaChartComponent , PercentStackedBarChartComponent , PercentStackedColumnChartComponent , DefaultPieComponent ,
109
111
DateTimeAxisChartComponent , RangeColumnChartComponent , DefaultDoughnutComponent , SemiPieComponent , SmartLabelsComponent ,
110
- DrilldownPieComponent , GroupingPieComponent ] ;
112
+ DrilldownPieComponent , GroupingPieComponent , InversedAxisChartComponent ] ;
111
113
@NgModule ( {
112
114
imports : [ chartRouter , ChartAllModule , SharedModule , ButtonModule , AccumulationChartAllModule ] ,
113
115
exports : [ ] ,
0 commit comments