I have a fusion map that has a color range scale (from 0 to 3,000,000,000).
When I adjust the scale (on the UI), I would like to get the value that is shown on the scale.
I would preferably like to capture it in an event.
I thought the event would have a name such as 'colorRangeUpdated', 'valueChange', 'colorRangeScaleUpdate', or 'getColorRangeValue' but I don't think any of these events exist.
How to get the value from a color range scale when the value updates? (e.g. the user slides the left or right slider to a different value).
Is there an event for this? What is it called?
(Here is a perfect example of a fusion map which has a sliding color scale) https://www.fusioncharts.com/fusionmaps/examples/average-temperature-of-us-states
I have already created events such as 'entityRollover' and 'entityRollout' but I didn't see any events related to the color range scale in the documentation https://www.fusioncharts.com/dev/api/fusioncharts/fusioncharts-events
With the help of the
legendRangeUpdatedevent you can get the updated value from a color range scale. See also JS fiddle.