Gadfly min/max ranges

The new version of Gadfly seems to be overriding the min/max values set in color_continuous().

The code below

plot(x=rand(12), y=rand(12), color=rand(12), Scale.color_continuous(minvalue=-1, maxvalue=100)) 

produces a colorkey from -50 to 100.

How to force Gadfly to produce a colorkey from -1 to 100?

1 Like