Open vojtamolda opened 2 years ago
The bug prevents natural use of Color.transparent
to achieve completely opaque plot backgrounds and paper, i.e. setting the Layout.plotBackgroundColor = .transparent
and Layout.paperBackgroundColor = .transparent
.
The
Color.transparent
static property isn't actually transparent. It's defined asColor.RGB(255, 255, 255, 1.0)
but should beColor.RGB(255, 255, 255, 0.0)
instead.