plotly.py icon indicating copy to clipboard operation
plotly.py copied to clipboard

[Feature request] pattern fill for scatter

Open shubhamgupta568 opened this issue 3 years ago • 1 comments

I know pattern fill is implemented for bar graphs. Can a similar feature be implemented for scatter? I am creating a custom web app for chart editing using react and need this feature in one of my chart

shubhamgupta568 avatar Jun 16 '22 09:06 shubhamgupta568

This is already implemented:

import plotly.graph_objects as go

fig = go.Figure(go.Scatter(x=[0,1,2,0], y=[0,2,0,0], fill="toself", fillpattern_shape="/"))
fig.show()

newplot

nicolaskruchten avatar Jun 16 '22 14:06 nicolaskruchten