Skip to content

Commit eb40161

Browse files
committed
Set default scatter3d opacity to 1.0
Changed the default opacity for scatter3d plots from 0.8 to 1.0 to ensure full visibility of plotted points unless otherwise specified.
1 parent c5f3719 commit eb40161

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

viz/graph_data.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -157,7 +157,7 @@ def get_scatter3d_data(
157157
if hover and c_key in hover
158158
else kwargs.get("c_type", "numerical")
159159
),
160-
"opacity": kwargs.get("opacity", 0.8),
160+
"opacity": kwargs.get("opacity", 1.0),
161161
"showlegend": kwargs.get("showlegend", True),
162162
"marker_size": 3,
163163
"line_color": "#757575",

0 commit comments

Comments
 (0)