Skip to content

Call dygraphs methods #24

Open
Open
@Antoine38660

Description

@Antoine38660

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 (emn178/angular2-chartjs#2 (comment))

Activity

pierre-fromager

pierre-fromager commented on May 26, 2019

@pierre-fromager

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

pierre-fromager commented on May 26, 2019

@pierre-fromager

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 😄

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

      Development

      No branches or pull requests

        Participants

        @pierre-fromager@Antoine38660

        Issue actions

          Call dygraphs methods · Issue #24 · mpx200/ng-dygraphs