Skip to content
This repository has been archived by the owner on Mar 4, 2024. It is now read-only.
/ ngx-number-format Public archive

Simple number-format directive for Angular Project

License

Notifications You must be signed in to change notification settings

901F/ngx-number-format

Repository files navigation

ngx-number-format

Simple number format for input element in Angular

GitHub license

Table of contents

Versions

Angular ngx-number-format
>=14.0.0 <15.0.0 v14.x
>=13.0.0 <14.0.0 v13.x
>=12.0.0 <13.0.0 v12.x
>=11.0.0 <12.0.0 v11.x
>=10.0.0 <11.0.0 v3.x
>=6.0.0 <10.0.0 v2.x

Installation instructions

Install ngx-number-format from npm:

npm install ngx-number-format --save

Add needed package to NgModule imports:

import { NgxNumberFormatModule } from 'ngx-number-format';

@NgModule({
  ...
  imports: [NgxNumberFormatModule,...]
  ...
})

Add ngxNumberFormat to your input element:

<input type="text" ngxNumberFormat="#,###,###" />

Demo

demo project

API

Input Type Default Required Description
[allowNegative] boolean false no Allows to negative numbers.