Coder Social home page Coder Social logo

Comments (6)

tejasatara avatar tejasatara commented on June 27, 2024

@yukiachen
"listeners": [{ "event": "clickGraphItem", "method": graphItemClicked }],
is how I am doing it however I am note sure how we can access the validateData method without having access to the graph object.

from amcharts-angular.

SteveShe avatar SteveShe commented on June 27, 2024

@tejasatara I think this is the answer to your question. I'll copy it here as well.

I just had to figure this out as well and I think the right way to do this is to broadcast the right events to get the chart to redraw. You do this in two steps:

  1. Include the $rootScope on whatever controller is in scope when you want to do this.
  2. Broadcast the events that you want amCharts to execute.

app.controller('myController', ['$scope', '$rootScope', function ($scope, $rootScope) {
...
$rootScope.$broadcast('amCharts.renderChart');
...
The available events that he is listening for are defined in amChartsDirective.js

     var onAmChartsTriggerChartAnimate = $scope.$on('amCharts.triggerChartAnimate', function (event, id) {
        if (id === $el[0].id || !id) {
          chart.animateAgain();
        }
      });

      var onAmChartsUpdateData = $scope.$on('amCharts.updateData', function (event, data, id) {
        if (id === $el[0].id || !id) {
          chart.dataProvider = data;
          chart.validateData();
        }

      });

      var onAmChartsValidateNow = $scope.$on('amCharts.validateNow', function (event, validateData, skipEvents, id) {
        if (id === $el[0].id || !id) {
          chart.validateNow(validateData === undefined ? true : validateData,
            skipEvents === undefined ? false : skipEvents);
        }
      });

      var onAmChartsRenderChart = $scope.$on('amCharts.renderChart', function (event, amChartOptions, id) {
        if (id === $el[0].id || !id) {
          chart.clear();
          renderChart(amChartOptions);
        }
      });

from amcharts-angular.

tbow avatar tbow commented on June 27, 2024

I having this same issue with no success. Is it possible you could provide a JSFiddle example?

from amcharts-angular.

seetsy avatar seetsy commented on June 27, 2024

Hi, to answer the original question, you do have access to the chart object from $scope. Just set a reference to "chart" on the element. For example:

<am-chart id="myFirstChart" options="amChartOptions" chart="chartObj"></am-chart>

Then you can access it in the scope:

$scope.chartObj

Hope that helps.

from amcharts-angular.

obidano avatar obidano commented on June 27, 2024

@seetsy Not working. the chart attributes ....can't access the object => result undefined

from amcharts-angular.

pratiksanglikar avatar pratiksanglikar commented on June 27, 2024

@obidano
The chart object is initially undefined but it is initialized later.
var refUpdated = false; $scope.$watch('chartObj', function (oldValue, newValue) { if(!refUpdated && $scope.chartObj) { refUpdated = true; // Use the chart object. } });

This code snippet should solve your problem.

from amcharts-angular.

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.