Is it possible to change what is displayed when hovering a point in a 2d density plot (from figure factory)?
Using hoverinfo=
in ff.create_2d_density()
throws “unexpected keyword argument” error.
Is it possible to change what is displayed when hovering a point in a 2d density plot (from figure factory)?
Using hoverinfo=
in ff.create_2d_density()
throws “unexpected keyword argument” error.
ff.create_2d_density()
actually has a .data
attribute which is a list of “traces” for each of the plots in the figure (the scatter + the histograms). This makes possible to change the hoverinfo=
attribute of the scatter trace.