From 7a437420e8a45db7c01354a7b21c2547c6f30609 Mon Sep 17 00:00:00 2001 From: OCA-git-bot Date: Tue, 26 Apr 2022 10:19:33 +0000 Subject: [PATCH] [UPD] README.rst --- web_widget_bokeh_chart/README.rst | 10 ++++++++-- web_widget_bokeh_chart/static/description/index.html | 11 +++++++++-- 2 files changed, 17 insertions(+), 4 deletions(-) diff --git a/web_widget_bokeh_chart/README.rst b/web_widget_bokeh_chart/README.rst index 787240aa1..1c14dae66 100644 --- a/web_widget_bokeh_chart/README.rst +++ b/web_widget_bokeh_chart/README.rst @@ -66,17 +66,23 @@ To insert a Bokeh chart in a view proceed as follows: compute='_compute_bokeh_chart', ) +#. At the top of the module add the following imports:: + + from bokeh.plotting import figure + from bokeh.embed import components + import json + #. In its computed method do:: def _compute_bokeh_chart(self): for rec in self: # Design your bokeh figure: - p = figure() # import that as `from bokeh.plotting import figure` + p = figure() line = p.line([0, 2], [1, 8], line_width=5) # (...) # fill the record field with both markup and the script of a chart. script, div = components(p, wrap_script=False) - rec.bokeh_chart = '%s%s' % (div, script) + rec.bokeh_chart = json.dumps({"div": div, "script": script}) #. In the view, add something like this wherever you want to display your bokeh chart:: diff --git a/web_widget_bokeh_chart/static/description/index.html b/web_widget_bokeh_chart/static/description/index.html index b6e1ab3ad..ebe5ee07f 100644 --- a/web_widget_bokeh_chart/static/description/index.html +++ b/web_widget_bokeh_chart/static/description/index.html @@ -412,17 +412,24 @@ bokeh_chart = fields.Text( ) +
  • At the top of the module add the following imports:

    +
    +from bokeh.plotting import figure
    +from bokeh.embed import components
    +import json
    +
    +
  • In its computed method do:

     def _compute_bokeh_chart(self):
         for rec in self:
             # Design your bokeh figure:
    -        p = figure()  # import that as `from bokeh.plotting import figure`
    +        p = figure()
             line = p.line([0, 2], [1, 8], line_width=5)
             # (...)
             # fill the record field with both markup and the script of a chart.
             script, div = components(p, wrap_script=False)
    -        rec.bokeh_chart = '%s%s' % (div, script)
    +        rec.bokeh_chart = json.dumps({"div": div, "script": script})
     
  • In the view, add something like this wherever you want to display your