mpx200 / ng-dygraphs

Angular 2+ library for support of dygraphs(http://dygraphs.com) charts
MIT License
3 stars 9 forks source link

Call dygraphs methods #24

Open Antoine38660 opened 6 years ago

Antoine38660 commented 6 years ago

It seems impossible to access the chart methods such as .resetZoom() and .xAxisRange() as described here: http://dygraphs.com/jsdoc/symbols/Dygraph.html Because _g (the chart instance) is private so we can't access it. Also NgDygraphsComponent isn't exported in index.ts (but available by importing ɵa from 'ng-dygraphs').

Is there a good reason to keep _g and NgDygraphsComponent private?

FYI: angular2-chartjs use this way to allow developers to access to the chart instance (https://github.com/emn178/angular2-chartjs/issues/2#issuecomment-255632335)

pierre-fromager commented 5 years ago

Hi, you can get the component instance using the drawCallback:(dygraph: Dygraph, is_initial: boolean). Just 've to define your callback lambda on the options.

pierre-fromager commented 5 years ago

Well, to enforce my previous answer, i would suggest to add (dygraphs + @types/dygraphs) npm packages to your project to make your mind up and to get all available dygraph options. Then to type your callback dygraph instance as Dygraph, just do an import as below . import Dygraph from 'dygraphs'; Hope this helps :smile: