Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions angular/src/app/app.component.ts
Original file line number Diff line number Diff line change
Expand Up @@ -62,6 +62,12 @@ export class AppComponent {
]
},

{
id: '41', name: 'Chart', url: '', subItems: [
{ id: '19', name: 'Smart Stock Forecasting', route: '/stockForecasting' },
]
},

{
id: '10', name: 'Kanban', subItems: [
{ id: '/kanban/sentiment-analysis/', name: 'Smart Recommendation' },
Expand Down
4 changes: 4 additions & 0 deletions angular/src/app/app.routes.ts
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ import {imageEditorRoutes} from './image-editor';
import { documentRoutes } from './document-editor';
import { SmartRichTextEditor } from './rich-text-editor/smart-rich-text-editor.component';
import { AdaptiveDataStructureComponent } from './treegrid/adaptive-data-structure/adaptive-data-structure.component';
import { StockForecastComponent } from './chart/stockForecasting/stockForecast.component';
export const routes: Routes = [
{
path: '',component: SmartTextArea
Expand Down Expand Up @@ -45,6 +46,9 @@ export const routes: Routes = [
{
path: 'smart-treegrid', component: AdaptiveDataStructureComponent
},
{
path: 'stockForecasting', component: StockForecastComponent
},
...sheetRoutes,...queryRoutes,...imageEditorRoutes,...documentRoutes,
];
@NgModule({
Expand Down
Loading