I have a set of data for different countries in following way
 
	dataset : [10, 45, 20, 70, 55, 100, 150, 200, 232, 2]
 
	i want to set the color range for these countries but want max value in legend  as 100
 
	scrollbar 0 to 100
 
	so i have set the color range in following way
 
	0 to 25:red
 
	25 to 50:yellow
 
	50 to 100:green
 
	expected : if any value is greater than 100; than  the color should be green.
 
	current scenario : if value is greater than 100 default null color is applied.
 
	is there any settings where we could map values to max values even if current value for a country is greater than max value specified in color range object.