JustGage component for Angular2
You can install angular2-justgage by using npm.
npm install angular2-justgage
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>
object
To create a justgage with configuration options, simply pass an object containing your configuration to the constructor.
number Set current value.
number Set maximum value.
The project is released under the MIT license.
The project's website is located at https://github.com/emn178/angular2-justgage
Author: Chen, Yi-Cyuan (emn178@gmail.com)