DeprecatedPercentPipe

pipe

npm Package @angular/common
Module import { DeprecatedPercentPipe } from '@angular/common';
Source common/src/pipes/deprecated/number_pipe.ts
NgModule CommonModule

Formats a number as a percentage according to locale rules.

How To Use

number_expression | percent[:digitInfo]

Description

Formats a number as percentage.

WARNING: this pipe uses the Internationalization API which is not yet available in all browsers and may require a polyfill. See Browser Support for details.

Example

@Component({
  selector: 'deprecated-percent-pipe',
  template: `<div>
    <!--output '25.9%'-->
    <p>A: {{a | percent}}</p>

    <!--output '0,134.95%'-->
    <p>B: {{b | percent:'4.3-5'}}</p>
  </div>`
})
export class DeprecatedPercentPipeComponent {
  a: number = 0.259;
  b: number = 1.3495;
}

© 2010–2018 Google, Inc.
Licensed under the Creative Commons Attribution License 4.0.
https://v5.angular.io/api/common/DeprecatedPercentPipe