How to assign colors in go.Cone based on a single column of a DataFrame instead of the total magnitude calculated by default?
I’m working with Plotly’s go.Cone function to visualize 3D data. In my plot, I’m representing cones with positions (x, y, z) and directions (u, v, w), where the components u, v, and w correspond to forces in each direction. Currently, the color bar in the plot is based on the total magnitude of the force vectors (sqrt(u^2 + v^2 + w^2)) by default.