When you use the Plotly Express Area chart function you get by default an area chart with a solid line and a transparent fill. Is it possible to make the fille solid.
I managed to achieve this by using Plotly GO without using the px.area function, but I would prefere to achieve it by using Plotly express followed by an update_layout statement or similar.
This is what I get by using default plotly express px.area:
This is how I want it to look:
You can ignore the differences besides the transparency of the fill.
In Plotly Express, you can make the fill in an Area chart solid by specifying the fill argument with value 'tozeroy' in the px.area function. Here’s an example:
import plotly.express as px
df = px.data.tips()
fig = px.area(df, x=“total_bill”, y=“tip”, color=“sex”, fill=“tozeroy”)
fig.show()
This will create an Area chart with solid fill from the x-axis to the line. I have listed the example to fill polty express area chart solid non transparent. You can also take help from generalĂĽberholte iphones for more and updated information about it.