I’m using the angular decimal pipe like this:
JavaScript
x
11
11
1
// Typescript
2
@Component({ })
3
export class ConfusionMatrixComponent {
4
5
@Input()
6
roundRules = '1.0-2';
7
}
8
9
// HTML:
10
<div class="value">{{ getIntensityNumber(i) | number: roundRules }}</div>
11
How can I use the same pipe but on a typescript function?
Advertisement
Answer
I found in a similar question how to use it: just need to import DecimalPipe
from @angular/commun
and use it as a service:
JavaScript
1
20
20
1
// Typescript
2
import { DecimalPipe } from '@angular/common';
3
4
@Component({ })
5
export class ConfusionMatrixComponent {
6
7
@Input()
8
roundRules = '1.0-2';
9
10
constructor(private decimalPipe: DecimalPipe) { }
11
12
getRoundNumber(num: number): string | null {
13
return this.decimalPipe.transform(num, this.roundRules) ?? '0';
14
}
15
16
}
17
18
// HTML:
19
<div class="value">{{ getRoundNumber(23.50873) }}</div>
20
Also, make sure you add the DecimalPipe to your providers
angular module:
JavaScript
1
8
1
import { CommonModule, DecimalPipe } from '@angular/common';
2
@NgModule({
3
declarations: [ ],
4
imports: [CommonModule],
5
exports: [ ],
6
providers: [DecimalPipe]
7
})
8