-
Notifications
You must be signed in to change notification settings - Fork 12
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
82dca08
commit 76d8cfa
Showing
11 changed files
with
500 additions
and
833 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,18 +1,10 @@ | ||
import { ElementRef, OnChanges } from '@angular/core'; | ||
export declare class NvD3Component implements OnChanges { | ||
import { ElementRef, OnChanges, AfterViewInit } from '@angular/core'; | ||
export declare class NvD3Component implements OnChanges, AfterViewInit { | ||
private el; | ||
private options; | ||
private data; | ||
private el; | ||
private chart; | ||
private svg; | ||
private isViewInitialize; | ||
constructor(elementRef: ElementRef); | ||
private ngNvD3; | ||
constructor(el: ElementRef); | ||
ngOnChanges(): void; | ||
ngAfterViewInit(): void; | ||
ngOnDestroy(): void; | ||
private updateWithOptions(options); | ||
private updateWithData(data); | ||
private configure(chart, options, chartType); | ||
private configureEvents(dispatch, options); | ||
private clearElement(); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
export declare namespace Angular2NvD3 { | ||
class NgNvD3 { | ||
private el; | ||
private data; | ||
private options; | ||
private chart; | ||
private svg; | ||
private viewInitialize; | ||
private static instance; | ||
constructor(el: any, options: any, data: any); | ||
static getInstance(el: any, options: any, data: any): NgNvD3; | ||
isViewInitialize(value: boolean): void; | ||
updateWithOptions(): void; | ||
private updateWithData(data); | ||
private configure(chart, options, chartType); | ||
private configureEvents(dispatch, options); | ||
private clearElement(); | ||
} | ||
} |
Oops, something went wrong.