-1

I am trying to change the location of the graph labels from the top right corner to the botton right corner.

funnel.plot(x="date_event_nk", y=["Show_Start", "Start_Complete"], kind="bar")

enter image description here

miradulo
  • 28,857
  • 6
  • 80
  • 93
Lucas Dresl
  • 1,150
  • 1
  • 10
  • 19

1 Answers1

0

Try this:

funnel.legend(loc='lower right')
Nivedh
  • 120
  • 13