Skip to content

Commit

Permalink
Merge branch 'main' into plan-1837-delete-treatment-plan
Browse files Browse the repository at this point in the history
  • Loading branch information
LALuis authored Jan 7, 2025
2 parents 9663379 + 0c98c43 commit 1cbb4e2
Showing 1 changed file with 1 addition and 13 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -102,24 +102,12 @@ export class StandDataChartComponent {
},
scales: {
y: {
min: -100,
max: 100,
ticks: {
color: '#4A4A4A', // Text color
font: baseFont as any,
padding: 24,
stepSize: 50,
callback: (value) => {
let res = `${value}%`;

if (value === 100) {
res = '>' + res;
} else if (value === -100) {
res = '<' + res;
}

return res;
},
callback: (value) => `${value}%`,
},
title: {
display: false,
Expand Down

0 comments on commit 1cbb4e2

Please sign in to comment.