summaryrefslogtreecommitdiffstats
path: root/usecaseui-portal/src/app/components/customer
diff options
context:
space:
mode:
Diffstat (limited to 'usecaseui-portal/src/app/components/customer')
-rw-r--r--usecaseui-portal/src/app/components/customer/customer.component.html5
-rw-r--r--usecaseui-portal/src/app/components/customer/customer.component.ts18
2 files changed, 20 insertions, 3 deletions
diff --git a/usecaseui-portal/src/app/components/customer/customer.component.html b/usecaseui-portal/src/app/components/customer/customer.component.html
index 5a38944c..82ef2818 100644
--- a/usecaseui-portal/src/app/components/customer/customer.component.html
+++ b/usecaseui-portal/src/app/components/customer/customer.component.html
@@ -17,8 +17,9 @@
<div class="chearts">
<div class="Cu">
<p> {{"i18nTextDefine_Instance_Count_of_Customer" | translate}} </p>
- <app-pie [initData]="CUChartInit" [chartData]="CUChartData"></app-pie>
- <div class="legend"></div><span> {{"i18nTextDefine_users" | translate}} </span>
+ <app-pie [initData]="CUChartInit" [chartData]="CUChartData" *ngIf="serviceChart"></app-pie>
+ <div *ngIf="!serviceChart" style="color: #ddd; font-weight: 700;font-size: 19px;height: 200px;text-align: center;line-height: 8;">No Service Instances </div>
+ <!-- <div class="legend"></div><span> {{"i18nTextDefine_users" | translate}} </span> -->
</div>
<div class="type">
<p> {{"i18nTextDefine_Instance_Count_of_ServiceType" | translate}} </p>
diff --git a/usecaseui-portal/src/app/components/customer/customer.component.ts b/usecaseui-portal/src/app/components/customer/customer.component.ts
index 51486dbf..b609de57 100644
--- a/usecaseui-portal/src/app/components/customer/customer.component.ts
+++ b/usecaseui-portal/src/app/components/customer/customer.component.ts
@@ -94,7 +94,7 @@ export class CustomerComponent implements OnInit {
normal: {
position: 'center',
show: false,
- formatter: ' {b|{b}:{c}%} ',
+ formatter: ' {b|{b}:{c}} ',
backgroundColor: 'rgba(51,51,51,0.9)',
borderColor: 'rgba(51,51,51,0.9)',
borderWidth: 1,
@@ -112,6 +112,11 @@ export class CustomerComponent implements OnInit {
}
},
+ labelLine: {
+ normal: {
+ show: false
+ }
+ },
itemStyle: {
normal: {
borderWidth: 3,
@@ -131,6 +136,7 @@ export class CustomerComponent implements OnInit {
}],
global: false
},
+ borderWidth: 0,
shadowBlur: 10,
shadowOffsetX: 0,
shadowColor: 'rgba(0, 10, 5, 0)'
@@ -141,8 +147,18 @@ export class CustomerComponent implements OnInit {
};
// get customers chart pie
+ Pie_name = [];
+ Pie_value = [];
+ serviceChart=true;
+ serviceNumber;
getCustomersPie() {
this.managemencs.getCustomersPie().subscribe((data) => {
+ this.serviceNumber = data.serviceTotalNum;
+ if (this.serviceNumber>0) {
+ this.serviceChart = true;
+ } else {
+ this.serviceChart = false;
+ }
this.CUChartData = {
series: [{
data:data.customerServiceList