From 1b72fd1b750a6d18e5d004a3346ac569e2ee9e9d Mon Sep 17 00:00:00 2001 From: Arman Khalatyan Date: Wed, 26 Aug 2020 17:37:59 +0200 Subject: [PATCH] Update app.py --- webapp/app.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/webapp/app.py b/webapp/app.py index 9214370..671c9a5 100644 --- a/webapp/app.py +++ b/webapp/app.py @@ -184,5 +184,5 @@ if st.checkbox( "interactive holoview plot"): if st.checkbox( "interactive scatter plot"): #plot_figure_plotly(df,xname,yname) points = hv.Points(df[[xname,yname]]) - # hex_tiles.opts(opts.HexTiles(width=500, height=400, tools=['hover'], colorbar=True)) - st.bokeh_chart(hv.render(points, backend='bokeh')) + points.opts(points.Points(width=500, height=400, tools=['hover'], colorbar=True)) + st.bokeh_chart(hv.render(datashade(points), backend='bokeh')) -- GitLab