Giter VIP home page Giter VIP logo

Comments (4)

jtblin avatar jtblin commented on June 15, 2024

Thanks for the great suggestion. This is now implemented and published in 0.4.0. You can now listen to the create and update events on the scope and retrieve the chart as the argument:

$scope.$on('create', function (chart) {
  console.log(chart);
});

Note that the event can be emitted multiple times for each chart as the chart can be destroyed and
created multiple times due to angular watch lifecycle.

from angular-chart.js.

newtonwagner avatar newtonwagner commented on June 15, 2024

Just to add a little update note, the listener function get the event object as the first param, so the solution is:

$scope.$on('create', function (event, chart) {
  console.log(chart);
});

from angular-chart.js.

jeetu3indra avatar jeetu3indra commented on June 15, 2024

Thanks a lot @newtonwagner. Suggestion saved me a lot of time!

from angular-chart.js.

esteban-filardi avatar esteban-filardi commented on June 15, 2024

Just wanted to add that as version 1.0.0 of angular-chart.js (It uses Chart.js 2) the code required to make this is

$scope.$on('chart-create', function (event, chart) {
    console.log(chart);
});

from angular-chart.js.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.