Closed TCherici closed 3 years ago
I can confirm, I am having similar difficulties. See also the example in the dash plotly documentation. The color picker is given parameter value=dict(rgb=dict(r=255, g=0, b=0, a=0)
but the resulting color selection is RGBA(0,0,0,1).
here's a preview of the change
.
Thanks for fixing!
When trying to set the
rgb
values of aColorPicker
object through a callback in python, the result is always off.For example, if I try to set its
value
to{'rgb': {'r': 255, 'g': 242, 'b': 229, 'a': 1}}
, it gets assigned the following values instead:The
g
andb
values are swapped, and ther
value is set to 1. No clue why that happens.I haven't yet fully figured out the cause of the issue, but I reckon it has something to do with the ColorPicker javascript object having its color attribute being (erroneously?) named
rbg
instead ofrgb
.