AmyJohnson Report post Posted September 8, 2013 Is there a way to capture the entity id/value from a mouse click? Thanks in advance Share this post Link to post Share on other sites
Sanjukta Report post Posted September 10, 2013 Is there a way to capture the entity id/value from a mouse click? Thanks in advance Hi, Please try using the "EntityRollover" event which is raised when mouse hovers over entities that would let you capture the entity ID and its associated value. The event can be listened using advanced event registration model. In the argumentsObject it provides the following properties: >> id: ID of the entity. In general it is the internal ID specified in the Maps Specification Sheet of the respective map. However, if custom ID is defined, it provide the custom ID. >> originalId: When custom ID is defined for an entity, it provide the original internal ID of the map, as per Map Specification Sheet of the respective map. >> value: Value of entity. >> label: Long name of entity. >> shortLabel: Short name of entity. For further details on its usage, please refer to the following link. Ref.- http://docs.fusioncharts.com/maps/Contents/?javascript/js_event_mouse.html Hope this helps. Share this post Link to post Share on other sites