plotly.py
plotly.py copied to clipboard
[Feature request] pattern fill for scatter
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
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()
