Patch Changes
-
fix(AnnotationRange): Don't extend past chart bounds when
xis omitted on band scales, and treatnullon either side ofx/yas "extend to chart edge". (#449) -
fix(Spline): Restore
series.props.opacity(and other style props) precedence over the computed series fade opacity. Regression introduced by per-segment styling refactor where the explicitopacitywas spread afterseries.props, clobbering per-series opacity values (e.g.series={[{ props: { opacity: 0.1 } }, ...]}). (#449) -
fix(ChartState): Don't filter explicit
x1Domain/y1Domainby visible series when no series are configured. Restores grouped layout for composable<Chart>usage (e.g.<Bars>withx1/x1Domain/x1Range) where the visible-series filter previously emptied the secondary band scale domain, collapsing all bars to a single category position. (#449)