You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
There should be an easy way to set the opacity of a geometry to a fractional value. For example, in ggplot2 one can simply write alpha=0.5, but with Gadfly, it's very verbose and non-intuitive: Theme(lowlight_color=c->RGBA{Float32}(c.r, c.g, c.b, 0.5)).
The text was updated successfully, but these errors were encountered:
alpha functionality has been added to the master branch. You can use it now by doing add Gadfly#master. There are examples in the dev docs. Feedback welcome! You can keep up with the latest developments by checking news.md, which appears in the file list on the main page: https://github.com/GiovineItalia/Gadfly.jl
There should be an easy way to set the opacity of a geometry to a fractional value. For example, in ggplot2 one can simply write
alpha=0.5
, but with Gadfly, it's very verbose and non-intuitive:Theme(lowlight_color=c->RGBA{Float32}(c.r, c.g, c.b, 0.5))
.The text was updated successfully, but these errors were encountered: