|
@@ -48,7 +48,7 @@ export default BaseUsageDonutChart.extend({
|
|
|
|
|
|
usageByApps.push({
|
|
usageByApps.push({
|
|
label: "Available",
|
|
label: "Available",
|
|
- value: avail.toFixed(4)
|
|
|
|
|
|
+ value: avail.toFixed(2)
|
|
});
|
|
});
|
|
|
|
|
|
this.colors = ColorUtils.getColors(usageByApps.length, ["others", "good"], true);
|
|
this.colors = ColorUtils.getColors(usageByApps.length, ["others", "good"], true);
|
|
@@ -56,4 +56,4 @@ export default BaseUsageDonutChart.extend({
|
|
this.renderDonutChart(usageByApps, this.get("title"), this.get("showLabels"),
|
|
this.renderDonutChart(usageByApps, this.get("title"), this.get("showLabels"),
|
|
this.get("middleLabel"), "100%", "%");
|
|
this.get("middleLabel"), "100%", "%");
|
|
},
|
|
},
|
|
-});
|
|
|
|
|
|
+});
|