Skip to content Skip to sidebar Skip to footer

Embed An Interactive Bokeh In Django Views

I want to make interactive plot in django views (or model ?). Let's say I want to use selection_histogram example. I think Bokeh fit my needs because, I have matplot/seaborn that I

Solution 1:

You don't need to run a Bokeh server to use Bokeh in DJANGO. You can just import Bokeh into you views.py.

You need to load the Bokeh js and css in your template, and render the components created by Bokeh. It think this is a concise example.

Post a Comment for "Embed An Interactive Bokeh In Django Views"