0

So, I'm learning how to use matplotlib and stumbled into MPLD3 as the most used way to get these plots in a webpage. However, MPLD3 doesn't support tick formatting and that's something critical for the project I'm in right now. I'd like to know if there is another way to add a matplotlib graph to a webpage while keeping the tick formatting and also having tooltips to display data on hover.

Thanks!

1 Answers1

1

For a web application I would consider bokeh. You can output html with interactive charts or run another backend server. If you go to the ipython notebook tutorial section 10 has demos for embedding.

Alternatively you can just save images from matplotlib and use them as static assets in your page.

it's-yer-boy-chet
  • 1,917
  • 2
  • 12
  • 21