Here is the best module out of few on npmjs:
angular2-chartjs
Then you can use it like this in your module:
import { ChartModule } from 'angular2-chartjs';
@NgModule({
imports: [ ChartModule ]
// ...
})
export class AppModule {
}
And in html template:
Don't forget to fill it with data ;)