UNPKG
ngx-nvd3
Version:
latest (1.0.9)
1.0.9
1.0.8
Angular2+ module for NVD3 charts
mvandenbrink/ngx-nvd3
ngx-nvd3
/
src
/
test
/
test.component.ts
9 lines
(7 loc)
•
240 B
text/typescript
View Raw
1
2
3
4
5
6
7
8
9
import
{ Component, DebugElement } from
'@angular/core'
;
@Component({ template: `<div nvd3 [options]=
"options"
[data]=
"data"
></div>` })
/** experimentalDecorator */
export
class
TestComponent
{
public
options: any;
public
data
: any; }