Small code optimisation.

This commit is contained in:
James Cole
2017-04-22 07:05:44 +02:00
parent e3cd11ec2e
commit beb358f8ee
2 changed files with 6 additions and 8 deletions

View File

@@ -108,6 +108,10 @@ class ChartJsGenerator implements GeneratorInterface
],
'labels' => [],
];
// sort by value, keep keys.
asort($data);
$index = 0;
foreach ($data as $key => $value) {