(**kw)
| 105 | from bokeh.plotting import figure # noqa |
| 106 | |
| 107 | def _gen_bokeh(**kw): |
| 108 | p = figure(title="simple line example", x_axis_label="x", y_axis_label="y", **kw) |
| 109 | p.line([1, 2, 3, 4, 5], [6, 7, 2, 4, 5], legend_label="Temp.", line_width=2) |
| 110 | return p |
| 111 | |
| 112 | def _gen_plotly(): |
| 113 | fig = go.Figure() |