Bugfix/fix rounding of y axis ticks in benchmark comparator (#1521)
* Fix rounding * Update changelog
This commit is contained in:
@@ -187,7 +187,7 @@ export class BenchmarkComparatorComponent implements OnChanges, OnDestroy {
|
||||
position: 'right',
|
||||
ticks: {
|
||||
callback: (value: number) => {
|
||||
return `${value} %`;
|
||||
return `${value.toFixed(2)} %`;
|
||||
},
|
||||
display: true,
|
||||
mirror: true,
|
||||
|
Reference in New Issue
Block a user