Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
P
portal-apps-manage
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Registry
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
angular
portal-apps-manage
Commits
c1deee78
Commit
c1deee78
authored
Aug 28, 2025
by
Ooh-Ao
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
circle
parent
e7eb7340
Expand all
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
29 additions
and
1 deletions
+29
-1
package-lock.json
package-lock.json
+0
-0
package.json
package.json
+2
-0
dashboard-viewer.component.ts
src/app/DPU/dashboard-viewer/dashboard-viewer.component.ts
+27
-1
No files found.
package-lock.json
View file @
c1deee78
This diff is collapsed.
Click to expand it.
package.json
View file @
c1deee78
...
@@ -39,10 +39,12 @@
...
@@ -39,10 +39,12 @@
"
@ngx-translate/http-loader
"
:
"^8.0.0"
,
"
@ngx-translate/http-loader
"
:
"^8.0.0"
,
"
@syncfusion/ej2-angular-base
"
:
"^29.2.4"
,
"
@syncfusion/ej2-angular-base
"
:
"^29.2.4"
,
"
@syncfusion/ej2-angular-charts
"
:
"^29.2.4"
,
"
@syncfusion/ej2-angular-charts
"
:
"^29.2.4"
,
"
@syncfusion/ej2-angular-circulargauge
"
:
"^29.1.33"
,
"
@syncfusion/ej2-angular-dropdowns
"
:
"^29.2.4"
,
"
@syncfusion/ej2-angular-dropdowns
"
:
"^29.2.4"
,
"
@syncfusion/ej2-angular-grids
"
:
"^29.2.4"
,
"
@syncfusion/ej2-angular-grids
"
:
"^29.2.4"
,
"
@syncfusion/ej2-angular-inputs
"
:
"^29.2.4"
,
"
@syncfusion/ej2-angular-inputs
"
:
"^29.2.4"
,
"
@syncfusion/ej2-angular-layouts
"
:
"^29.2.4"
,
"
@syncfusion/ej2-angular-layouts
"
:
"^29.2.4"
,
"
@syncfusion/ej2-angular-maps
"
:
"^29.1.33"
,
"
@syncfusion/ej2-angular-pivotview
"
:
"^29.2.4"
,
"
@syncfusion/ej2-angular-pivotview
"
:
"^29.2.4"
,
"
@syncfusion/ej2-base
"
:
"^29.2.4"
,
"
@syncfusion/ej2-base
"
:
"^29.2.4"
,
"
@syncfusion/ej2-buttons
"
:
"^29.2.4"
,
"
@syncfusion/ej2-buttons
"
:
"^29.2.4"
,
...
...
src/app/DPU/dashboard-viewer/dashboard-viewer.component.ts
View file @
c1deee78
...
@@ -62,6 +62,19 @@ import { SharedModule } from '../../shared/shared.module';
...
@@ -62,6 +62,19 @@ import { SharedModule } from '../../shared/shared.module';
AreaChartWidgetComponent
,
AreaChartWidgetComponent
,
BarChartWidgetComponent
,
BarChartWidgetComponent
,
PieChartWidgetComponent
,
PieChartWidgetComponent
,
ScatterBubbleChartWidgetComponent
,
MultiRowCardWidgetComponent
,
ComboChartWidgetComponent
,
DoughnutChartWidgetComponent
,
FunnelChartWidgetComponent
,
GaugeChartWidgetComponent
,
SimpleKpiWidgetComponent
,
FilledMapWidgetComponent
,
MatrixWidgetComponent
,
SlicerWidgetComponent
,
SimpleTableWidgetComponent
,
WaterfallChartWidgetComponent
,
TreemapWidgetComponent
,
],
],
templateUrl
:
'./dashboard-viewer.component.html'
,
templateUrl
:
'./dashboard-viewer.component.html'
,
styleUrls
:
[
'./dashboard-viewer.component.scss'
],
styleUrls
:
[
'./dashboard-viewer.component.scss'
],
...
@@ -91,7 +104,20 @@ export class DashboardViewerComponent implements OnInit {
...
@@ -91,7 +104,20 @@ export class DashboardViewerComponent implements OnInit {
'NewDataTableWidget'
:
DataTableWidgetComponent
,
// Add new widget to map
'NewDataTableWidget'
:
DataTableWidgetComponent
,
// Add new widget to map
'AreaChartWidgetComponent'
:
AreaChartWidgetComponent
,
'AreaChartWidgetComponent'
:
AreaChartWidgetComponent
,
'BarChartWidgetComponent'
:
BarChartWidgetComponent
,
'BarChartWidgetComponent'
:
BarChartWidgetComponent
,
'PieChartWidgetComponent'
:
PieChartWidgetComponent
'PieChartWidgetComponent'
:
PieChartWidgetComponent
,
'ScatterBubbleChartWidgetComponent'
:
ScatterBubbleChartWidgetComponent
,
'MultiRowCardWidgetComponent'
:
MultiRowCardWidgetComponent
,
'ComboChartWidgetComponent'
:
ComboChartWidgetComponent
,
'DoughnutChartWidgetComponent'
:
DoughnutChartWidgetComponent
,
'FunnelChartWidgetComponent'
:
FunnelChartWidgetComponent
,
'GaugeChartWidgetComponent'
:
GaugeChartWidgetComponent
,
'SimpleKpiWidgetComponent'
:
SimpleKpiWidgetComponent
,
'FilledMapWidgetComponent'
:
FilledMapWidgetComponent
,
'MatrixWidgetComponent'
:
MatrixWidgetComponent
,
'SlicerWidgetComponent'
:
SlicerWidgetComponent
,
'SimpleTableWidgetComponent'
:
SimpleTableWidgetComponent
,
'WaterfallChartWidgetComponent'
:
WaterfallChartWidgetComponent
,
'TreemapWidgetComponent'
:
TreemapWidgetComponent
,
};
};
public
errorMessage
:
string
|
null
=
null
;
public
errorMessage
:
string
|
null
=
null
;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment