Fixes rounding when 0.001% or less on CPU usage. (#4207)

This commit is contained in:
VinGal 2022-07-01 01:23:27 +01:00 committed by GitHub
parent ccea09c9d9
commit cc06d1faa9
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 4 additions and 5 deletions

View file

@ -139,7 +139,7 @@ function useChart(label: string, opts?: UseChartOptions) {
return { props: { data, options }, push, clear };
}
function useChartTickLabel(label: string, max: number, tickLabel: string) {
function useChartTickLabel(label: string, max: number, tickLabel: string, roundTo?: number) {
return useChart(label, {
sets: 1,
options: {
@ -148,7 +148,7 @@ function useChartTickLabel(label: string, max: number, tickLabel: string) {
suggestedMax: max,
ticks: {
callback(value) {
return `${value}${tickLabel}`;
return `${roundTo ? Number(value).toFixed(roundTo) : value}${tickLabel}`;
},
},
},