angular2-justgage
TypeScript icon, indicating that this package has built-in type declarations

0.3.0 • Public • Published

angular2-justgage

JustGage component for Angular2

Installation

You can install angular2-justgage by using npm.

npm install angular2-justgage

Usage

Add JustgageModule to your module, eg.

import { JustgageModule } from 'angular2-justgage';
 
@NgModule({
  imports: [ JustgageModule ]
  // ...
})
export class AppModule {
}

And you can use selector justgage in your template.

JavaScript

options = {
  min: 0,
  title: 'Visitors'
};
max = 100;
value = 67;

HTML

<justgage [options]="options" [max]="max" [value]="value"></justgage>

Options

[options]

object
To create a justgage with configuration options, simply pass an object containing your configuration to the constructor.

[value]

number Set current value.

[max]

number Set maximum value.

License

The project is released under the MIT license.

Contact

The project's website is located at https://github.com/emn178/angular2-justgage
Author: Chen, Yi-Cyuan (emn178@gmail.com)

Readme

Keywords

Package Sidebar

Install

npm i angular2-justgage

Weekly Downloads

41

Version

0.3.0

License

MIT

Last publish

Collaborators

  • emn178