diff --git a/webapp/app.py b/webapp/app.py index 9214370a1fcb393adea6a2978f9a7efc8287481e..671c9a5934972c83d34e3373bfbbcb5bf74f3b8c 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'))