@@ -23,6 +23,7 @@ import { CategoryChartComponent } from './category.component';
23
23
import { StackedBarChartComponent } from './stacked-bar.component' ;
24
24
import { StackedColumnChartComponent } from './stacked-column.component' ;
25
25
import { StepLineChartComponent } from './step-line.component' ;
26
+ import { StepAreaChartComponent } from './step-area.component' ;
26
27
import { SymbolsChartComponent } from './symbols.component' ;
27
28
import { ScatterChartComponent } from './scatter.component' ;
28
29
import { BubbleChartComponent } from './bubble.component' ;
@@ -57,6 +58,7 @@ export const chartAppRoutes: Object[] = [
57
58
{ path : 'chart/stacked-area100' , component : PercentStackedAreaChartComponent , name : '100% Stacked Area' , order :'01' , category : 'Series' } ,
58
59
{ path : 'chart/range-column' , component : RangeColumnChartComponent , name : 'Range Column' , order :'01' , category : 'Series' } ,
59
60
{ path : 'chart/step-line' , component : StepLineChartComponent , name : 'StepLine' , order :'01' , category : 'Series' } ,
61
+ { path : 'chart/step-area' , component : StepAreaChartComponent , name : 'StepArea' , order :'01' , category : 'Series' , type :'new' } ,
60
62
{ path : 'chart/scatter' , component : ScatterChartComponent , name : 'Scatter' , order :'01' , category : 'Series' } ,
61
63
{ path : 'chart/bubble' , component : BubbleChartComponent , name : 'Bubble' , order :'01' , category : 'Series' } ,
62
64
{ path : 'chart/combination-series' , component : CombinationSeriesChartComponent , name : 'Combination Series' ,
@@ -99,7 +101,7 @@ export const chartAppRoutes: Object[] = [
99
101
100
102
export const chartRouter : ModuleWithProviders = RouterModule . forChild ( chartAppRoutes ) ;
101
103
let declarations : Type < Object > [ ] = [ LineChartComponent , ColumnChartComponent , BarChartComponent , AreaChartComponent ,
102
- SplineChartComponent , StackedColumnChartComponent , StackedBarChartComponent , StackedAreaChartComponent , StepLineChartComponent ,
104
+ SplineChartComponent , StackedColumnChartComponent , StackedBarChartComponent , StackedAreaChartComponent , StepLineChartComponent , StepAreaChartComponent ,
103
105
ScatterChartComponent , BubbleChartComponent , CombinationSeriesChartComponent , PerformanceChartComponent , NumericAxisChartComponent ,
104
106
CategoryChartComponent , LogarithmicAxisChartComponent , MultipleAxesChartComponent , SymbolsChartComponent , SelectionChartComponent ,
105
107
CrosshairChartComponent , TrackBallChartComponent , ZoomingChartComponent , LocalDataChartComponent , RemoteDataChartComponent ,
0 commit comments