Breaking Changes
- The
Plottable.Interactions.PanZoom.zoom()
method now respects the zoom extent and minmax constraints by default. You may disable this behavior by passing false
to the third argument:
// old
panZoomInteraction.zoom(amount, center); // unconstrained zoom
// new
panZoomInteraction.zoom(amount, center); // respects constraints
panZoomInteraction.zoom(amount, center, false); // unconstrained again
Bug Fixes
- Fixed plots with
deferredRendering(true)
sometimes rendering improperly.
- Canvas rendering now respects the inherit opacity in
fill
and stroke
attrs.
- Fix a bug with PanZoom where slightly zooming out would sometimes zoom out completely.