In the image below used on pie chart tutorial we can se the labels for Oxygen, Hydrogen, Carbon_diode and Nitrogen, but for me these labels are too small. The percentage numbers are small too but I can change the percentage numbers according the docs, but I not found nothing about the label size. Is there any way to do it?
import plotly.graph_objects as go
labels = ['Oxygen','Hydrogen','Carbon_Dioxide','Nitrogen']
values = [4500, 2500, 1053, 500]
# Use `hole` to create a donut-like pie chart
fig = go.Figure(data=[go.Pie(labels=labels, values=values, hole=.3)])
fig.show()
Hi @AIMPED and @Skiks , sorry for late reply. So, textfont_size will increase just the percentage text in the donut chart, Iβm using it too. But I was talking about the names on the right:
They are too small and textfont_size donβt work in this case.