This repository was archived by the owner on Aug 29, 2025. It is now read-only.

Description
Being able to set the color range for continuous color columns would be very useful. e.g.:
px.scatter(
tips, x="total_bill", y="tip",
color="size", facet_col="sex",
color_continuous_scale=px.colors.sequential.Viridis,
color_min=0, color_max=10 # <--- new args support requested
)
Currently the behavior seems to use different color scales across row and column facets, which means that the single color-scale legend is inaccurate.