Skip to content
Snippets Groups Projects

Resolve "Courbe de remous: visualiser les profils de sections"

3 files
+ 8
4
Compare changes
  • Side-by-side
  • Inline
Files
3
@@ -2,6 +2,7 @@ import { Component, Input } from '@angular/core';
import { Router } from '@angular/router';
import { FormulaireDefinition } from 'app/formulaire/definition/form-definition';
import { FormulaireService } from 'app/services/formulaire.service';
import { I18nService } from 'app/services/internationalisation.service';
import { fv } from 'app/util';
import { formattedValue } from 'jalhyd';
@@ -31,11 +32,14 @@ export class SelectSectionDetailsComponent {
constructor(
private formulaireService: FormulaireService,
private router: Router
private router: Router,
private intlService: I18nService
) { }
public pointLabel(p: any): string {
return "x : " + formattedValue(p.x, 1) + " y : " + fv(p.z);
const abs = this.intlService.localizeText("INFO_REMOUSRESULTS_ABSCISSE");
const tirant = this.intlService.localizeText("INFO_REMOUSRESULTS_TIRANT");
return abs + " : " + formattedValue(p.x, 1) + " - " + tirant + " : " + fv(p.z);
}
/**
Loading