Fixed colors.
This commit is contained in:
parent
a1833ddd0b
commit
62f1b7b92f
1 changed files with 2 additions and 2 deletions
|
@ -1520,13 +1520,13 @@ public class ChartHtmlizer
|
|||
ServiceInstallTypeStats stats = StatAgent.statServiceInstallType(services);
|
||||
|
||||
PieChart pie = new PieChart("Types d'installation du service");
|
||||
pie.add("Distribution", stats.getDistributionCount(), ChartColor.PURPLE);
|
||||
pie.add("Distribution", stats.getDistributionCount(), ChartColor.GREEN0);
|
||||
pie.add("Fournisseur", stats.getProviderCount(), ChartColor.GREEN);
|
||||
pie.add("Paquet", stats.getPackageCount(), ChartColor.YELLOW);
|
||||
pie.add("Outillage", stats.getToolingCount(), ChartColor.ORANGE);
|
||||
pie.add("Dépôt cloné", stats.getClonerepoCount(), ChartColor.RED);
|
||||
pie.add("Archive", stats.getArchiveCount(), ChartColor.VIOLET);
|
||||
pie.add("Sources", stats.getSourcesCount(), ChartColor.GREY);
|
||||
pie.add("Sources", stats.getSourcesCount(), ChartColor.PURPLE);
|
||||
pie.add("Containeur", stats.getContainerCount(), ChartColor.TURQUOISE);
|
||||
pie.add("Inconnu", stats.getUnknownCount(), ChartColor.BLUE);
|
||||
pie.setLegendPosition(Position.RIGHT);
|
||||
|
|
Loading…
Reference in a new issue