summaryrefslogtreecommitdiffstats
path: root/ecomp-sdk/epsdk-app-overlay/src/main/webapp/ngapp/src/app/pages/analytics/Report_List/Report/chart-wizard/chart-wizard-model/range-axis-list-model.ts
diff options
context:
space:
mode:
Diffstat (limited to 'ecomp-sdk/epsdk-app-overlay/src/main/webapp/ngapp/src/app/pages/analytics/Report_List/Report/chart-wizard/chart-wizard-model/range-axis-list-model.ts')
-rw-r--r--ecomp-sdk/epsdk-app-overlay/src/main/webapp/ngapp/src/app/pages/analytics/Report_List/Report/chart-wizard/chart-wizard-model/range-axis-list-model.ts25
1 files changed, 25 insertions, 0 deletions
diff --git a/ecomp-sdk/epsdk-app-overlay/src/main/webapp/ngapp/src/app/pages/analytics/Report_List/Report/chart-wizard/chart-wizard-model/range-axis-list-model.ts b/ecomp-sdk/epsdk-app-overlay/src/main/webapp/ngapp/src/app/pages/analytics/Report_List/Report/chart-wizard/chart-wizard-model/range-axis-list-model.ts
new file mode 100644
index 00000000..f46134c0
--- /dev/null
+++ b/ecomp-sdk/epsdk-app-overlay/src/main/webapp/ngapp/src/app/pages/analytics/Report_List/Report/chart-wizard/chart-wizard-model/range-axis-list-model.ts
@@ -0,0 +1,25 @@
+export class RangeAxisListModel {
+ rangeAxisLabelJSON: any;
+ rangeColorJSON: any;
+ rangeLineTypeJSON: any;
+ rangeChartGroup: string;
+ rangeYAxis: number;
+ rangeAxis: number;
+ showAsArea: boolean;
+ rangeLineType: string;
+ rangeColor: string;
+
+ constructor() {
+
+ this.rangeAxisLabelJSON = {};
+ this.rangeColorJSON = {};
+ this.rangeLineTypeJSON = {};
+ this.rangeChartGroup = '';
+ this.rangeYAxis = 0;
+ this.rangeAxis = 0;
+ this.showAsArea = false;
+ this.rangeLineType = '';
+ this.rangeColor = '';
+
+ }
+}