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
I think it would be great to have the 'magic underscore' behavior supported in the following places in the API:
The constructors of all graph objects: go.Scatter(marker_line_color='blue'), I think this could be implemented in the new BasePlotlyType._process_kwargs method.
The fig.add_* methods for adding traces: fig.add_scatter(..., marker_line_color='blue')
The .update method on graph objects as you had before: scatter.update(marker_line_color='blue')
When processing dicts passed to graph object constructors: go.Scatter(dict(marker_line_color='blue')), or go.Scatter(marker=dict(line_color='blue'))
The text was updated successfully, but these errors were encountered:
Broken off of #919 (comment) where @jonmmease said:
I think it would be great to have the 'magic underscore' behavior supported in the following places in the API:
go.Scatter(marker_line_color='blue')
, I think this could be implemented in the newBasePlotlyType._process_kwargs
method.fig.add_*
methods for adding traces:fig.add_scatter(..., marker_line_color='blue')
.update
method on graph objects as you had before:scatter.update(marker_line_color='blue')
go.Scatter(dict(marker_line_color='blue'))
, orgo.Scatter(marker=dict(line_color='blue'))
The text was updated successfully, but these errors were encountered: