Veerendra Report post Posted December 20, 2013 How do I know the X and Y Positions of a mouse click event on Node of Drag Node Chart.I am handling Mouse Click Event using Link attribute but I need the X and Y Positions of the mouse click event so that we can openup a small popup Share this post Link to post Share on other sites
Haritha Report post Posted December 21, 2013 Hi, Please try using the method "getNodeAttribute" for obtaining the x and y co-ordinates of a node. Ref. var node_x = FusionCharts("chart1").getNodeAttribute("nodeId").x; var node_y = FusionCharts("chart1").getNodeAttribute("nodeId").y; Hope this helps Share this post Link to post Share on other sites