Hi, I would like to know if there’s any way to disable legend click events on a pie chart in python.
Hi, I would like to know if there’s any way to disable legend click events on a pie chart in python.
To disable legend click events you should set:
legend_itemclick=False
# for a single click
and
legend_itemdoubleclick=False
#for double click
Hi @empet, where should I specify this?
@empet I just figured out where to use it… Thanks a lot!!!