Skip to content

Commit

Permalink
🚑 Evitar que salga línea dep por fuera de la gráfica
Browse files Browse the repository at this point in the history
  • Loading branch information
1cgonza committed Dec 13, 2023
1 parent dc6af3c commit 2876bc8
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions aplicaciones/www/src/utilidades/ayudas.ts
Original file line number Diff line number Diff line change
Expand Up @@ -174,12 +174,10 @@ export function definirMedidasMax(datosNal: DatosIndicadorNal, nombreArchivo: st
if (datosNal.unidadMedida > 100) {
if (nombreArchivo === 'ya1-7') {
return { y: 15000, color: 15000 };
} else if (nombreArchivo === 'ya4-2') {
return { y: 200, color: 100 };
} else {
return {
y: Math.min(Math.ceil(datosNal.maxNal / 100) * 100, 10000),
color: Math.ceil(datosNal.minNal / 10) * 10,
y: Math.min(Math.ceil(datosNal.maxDep / 100) * 100, 10000),
color: Math.ceil(datosNal.maxNal / 10) * 10,
};
}
} else {
Expand Down

0 comments on commit 2876bc8

Please sign in to comment.