Git Product home page Git Product logo

Comments (8)

SanjayStratforge avatar SanjayStratforge commented on September 7, 2024 1

Thank you @martynasma,

#1667 (comment)

I was able to find an alternate for the above mentioned.

Few things I couldn't get was for the line series which is using bullets for getting events, for sunburst and radar chart, we'll have a separate discussion since this gets more chart specific and cluttered over here.

I'll try proceeding with bullets for line series. We might close this issue for now.

Thanks!

from amcharts5.

martynasma avatar martynasma commented on September 7, 2024

Area & Line - No right click event. How do I get the value from that data point? even I couldn't get the tooltip content.

LineSerries does not have individual elements to add click events on.

You might need to consider adding bullets. They can be transparent if you don't want them displayed.

https://www.amcharts.com/docs/v5/concepts/common-elements/bullets/

Combo - I could get the data of column but I couldn't get value of line from a data point.
Stacked - I am able to get only the whole column value and not the split value.
Sunburst & Radar - I was not able to get the desired data.
Pie of pie & Pie of bar - I was not able to get the parent series of the sub series.

Please make sure you add events on a series item, e.g.:

columnSeries.columns.template.events.on("click", function(ev) {
  console.log(ev.target.dataItem);
});

pieSeries.slices.template.events.on("click", function(ev) {
  console.log(ev.target.dataItem);
});

from amcharts5.

SanjayStratforge avatar SanjayStratforge commented on September 7, 2024

I tried this approach already for pieSeries but the event isn't captured by the listener.
columnSeries.events.on("rightclick", function (event: any) {
console.log("Column event ->", event;
});

Only this is capturing my event. That too doesn't hold it's parent.

from amcharts5.

martynasma avatar martynasma commented on September 7, 2024

As per my previous reply, you need to add those events column templates, rather than series directly:

columnSeries.columns.template.events.on("rightclick", function (event: any) {
  console.log("Column event ->", event);
});

from amcharts5.

SanjayStratforge avatar SanjayStratforge commented on September 7, 2024

It doesn't work. Following is the code:

columnSeries.columns.template.events.on("rightclick", function (event: any) {
        console.log("Event =>", event);
});

Also not able to get the parent slice data.

PieSeries:

pieSeries.slices.template.events.on("rightclick", function (event: any) {
console.log("Event =>", event);
});

The event listener is not getting it.

from amcharts5.

martynasma avatar martynasma commented on September 7, 2024

The code is good. Make sure the events are created before data is set on series.

from amcharts5.

SanjayStratforge avatar SanjayStratforge commented on September 7, 2024

Checked. Not resolved yet.

from amcharts5.

martynasma avatar martynasma commented on September 7, 2024

Can you post your chart on CodePen?

from amcharts5.

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.