Skip to content

v3.7.0

Compare
Choose a tag to compare
@hellochar hellochar released this 20 Oct 23:10
· 84 commits to develop since this release

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.