I make a plot like this:
plot(
layer(x=sort(randn(1000),1), y=sort(randn(1000),1), Geom.point),
layer(x=[-4,4], y=[-4,4], Geom.line(), Theme(default_color=color("black"))))
As you can see, the white circle around the points makes the high density parts of the plot almost white.
I would like to change the outer circle color of the points to black (or blue) to better show that the points are really there.
From the Gadfly documentation it seems like the highlight_color
argument of Theme()
might do that, but it takes a function as argument.
I don't understand how that is supposed to work. Any ideas?