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
When trying to set the rgb values of a ColorPicker 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 and b values are swapped, and the r 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 of rgb.
The text was updated successfully, but these errors were encountered:
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).
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
.The text was updated successfully, but these errors were encountered: