File tree Expand file tree Collapse file tree 1 file changed +21
-10
lines changed
portal-ui/src/screens/Console/Tenants/ListTenants Expand file tree Collapse file tree 1 file changed +21
-10
lines changed Original file line number Diff line number Diff line change @@ -32,15 +32,15 @@ const TenantCapacity = ({
32
32
statusClass,
33
33
} : ITenantCapacity ) => {
34
34
const colors = [
35
- "#C4D4E9 " ,
36
- "#DCD1EE " ,
37
- "#D1EEE7 " ,
38
- "#EEDED1 " ,
39
- "#AAF38F " ,
40
- "#F9E6C5 " ,
35
+ "#8dacd3 " ,
36
+ "#bca1ea " ,
37
+ "#92e8d2 " ,
38
+ "#efc9ac " ,
39
+ "#97f274 " ,
40
+ "#f7d291 " ,
41
41
"#71ACCB" ,
42
- "#F4CECE " ,
43
- "#D6D6D6 " ,
42
+ "#f28282 " ,
43
+ "#e28cc1 " ,
44
44
"#2781B0" ,
45
45
] ;
46
46
@@ -88,7 +88,7 @@ const TenantCapacity = ({
88
88
}
89
89
90
90
const plotValues : CapacityValue [ ] = [
91
- { value : emptySpace , color : "#D6D6D6 " , label : "Empty Space" } ,
91
+ { value : emptySpace , color : "transparent " , label : "Empty Space" } ,
92
92
{
93
93
value : standardTier . value ,
94
94
color : standardTierColor ,
@@ -127,6 +127,17 @@ const TenantCapacity = ({
127
127
</ span >
128
128
< div >
129
129
< PieChart width = { 110 } height = { 110 } >
130
+ < Pie
131
+ data = { [ { value : 100 } ] }
132
+ cx = { "50%" }
133
+ cy = { "50%" }
134
+ dataKey = "value"
135
+ outerRadius = { 50 }
136
+ innerRadius = { 40 }
137
+ fill = "#ededed"
138
+ isAnimationActive = { false }
139
+ stroke = { "none" }
140
+ />
130
141
< Pie
131
142
data = { plotValues }
132
143
cx = { "50%" }
@@ -136,7 +147,7 @@ const TenantCapacity = ({
136
147
innerRadius = { 40 }
137
148
>
138
149
{ plotValues . map ( ( entry , index ) => (
139
- < Cell key = { `cellCapacity-${ index } ` } fill = { entry . color } />
150
+ < Cell key = { `cellCapacity-${ index } ` } fill = { entry . color } stroke = { "none" } />
140
151
) ) }
141
152
</ Pie >
142
153
</ PieChart >
You can’t perform that action at this time.
0 commit comments