You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi,
All the scatter plot in the examples need the trace trait, which is not used now. So the the following error will occur, and the error message is meaningless:
We need use plotly::{Plot, Scatter, Trace} instead of use plotly::{Plot, Scatter}. Because other plots such as heatmap, contour don't need the Trace trait, how to fix it ?
The text was updated successfully, but these errors were encountered:
Hi,
All the scatter plot in the examples need the trace trait, which is not used now. So the the following error will occur, and the error message is meaningless:
We need
use plotly::{Plot, Scatter, Trace}
instead ofuse plotly::{Plot, Scatter}
. Because other plots such as heatmap, contour don't need theTrace
trait, how to fix it ?The text was updated successfully, but these errors were encountered: