UNPKG
angular2-chartjs
Version:
latest (0.5.1)
0.5.1
0.5.0
0.4.1
0.4.0
0.3.0
0.2.0
0.1.6
0.1.5
0.1.4
0.1.3
0.1.2
0.1.1
Chart.js component for Angular2
github.com/emn178/angular2-chartjs
emn178/angular2-chartjs
angular2-chartjs
/
src
/
chart.module.ts
12 lines
(10 loc)
•
244 B
text/typescript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
import
'chart.js'
;
import
{
NgModule
}
from
'@angular/core'
;
import
{
ChartComponent
}
from
'./chart.component'
;
@NgModule
({
declarations
: [
ChartComponent
],
exports
: [
ChartComponent
] })
export
class
ChartModule
{
constructor
(
) { } }