Skip to content
Snippets Groups Projects
Commit 7d574357 authored by François Grand's avatar François Grand
Browse files

fix: backwater curves chart: restore filled legend rectangle items

refs #554
parent 4fa8a52d
No related branches found
No related tags found
1 merge request!168Resolve "Mise à jour de chartjs"
......@@ -193,13 +193,15 @@ export class ChartData {
/**
* Dessigne une ligne droite entre y0 (abscisse 0) et ymax (abscisse max),
* sans passer par les méthodes mapPoint() et mapY() utilisées dans drawLine
* @param fillArea true pour remplir la zone sous la ligne
* @param fillColor couleur de remplissage de la zone sous la ligne
*/
public drawSimpleLine(y0: number, ymax: number, prof: number, color: string, lbl: string, fillColor?: string) {
public drawSimpleLine(y0: number, ymax: number, prof: number, color: string, lbl: string, fillArea: boolean = false, fillColor?: string) {
const l = this.newLine(prof);
l.setPoint(0, y0);
l.setPoint(this._longBief, ymax);
l.data = {
label: lbl, fill: fillColor !== undefined, tension: 0, spanGaps: true,
label: lbl, fill: fillArea, tension: 0, spanGaps: true,
borderColor: color, backgroundColor: fillColor, pointRadius: 0, showLine: "true"
};
}
......
......@@ -272,18 +272,18 @@ export class RemousResultsComponent extends ResultsComponentDirective implements
}
// ligne de fond
gr1.drawSimpleLine(ZF1, ZF2, 3, "#753F00", this.uitextFond, "#753F00");
gr1.drawSimpleLine(ZF1, ZF2, 3, "#753F00", this.uitextFond, true, "#753F00");
// ligne de berge
if (hauteurBerge) {
gr1.drawSimpleLine(ZF1 + hauteurBerge, ZF2 + hauteurBerge, 4, "#C58F50", this.uitextBerge);
gr1.drawSimpleLine(ZF1 + hauteurBerge, ZF2 + hauteurBerge, 4, "#C58F50", this.uitextBerge, false, "#C58F50");
}
// hauteur normale
if (this._remousResults.hautNormale?.ok) {
const Yn = this._remousResults.hautNormale.vCalc;
gr1.drawSimpleLine(Yn + ZF1, Yn + ZF2,
5, "#A4C537", this.uitextTirantNormal
5, "#A4C537", this.uitextTirantNormal, false, "#A4C537"
);
}
......@@ -291,7 +291,7 @@ export class RemousResultsComponent extends ResultsComponentDirective implements
if (this._remousResults.hautCritique?.ok) {
const Yc = this._remousResults.hautCritique.vCalc;
gr1.drawSimpleLine(Yc + ZF1, Yc + ZF2,
6, "#FF0000", this.uitextTirantCritique
6, "#FF0000", this.uitextTirantCritique, false, "#FF0000"
);
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment