Skip to content

5.0.0-beta.29

Compare
Choose a tag to compare
@martynasma martynasma released this 01 Oct 11:02
· 179 commits to master since this release

[5.0.0-beta.29] - 2021-10-01

Added

  • Wherever date or number format can be set (DateFormatter, NumberFormatter, DateAxis, ValueAxis, Exporting) it can now be set as Intl.DateTimeFormatOptions (for date format) or Intl.NumberFormatOptions (for number format) object in additional to string-based format. More info.
  • New list type ListAutoDispose added.

Changed

  • XYCursor will now ignore mouse movement if chart is obstructed by other element, unless zoomin/panning.
  • series, xAxes, and yAxes on an XYChart are now ListAutoDispose, which means that removing items from those lists will automatically dispose them. Set autoDispose = false on those lists if you are planning on removing and reusing items.

Fixed

  • Sunburst nodes were shown on drill-down when they were not supposed to in some cases.
  • Hierarchy node elements were ignoring templateField.
  • It was impossible to move XYChart scrollbars to some other container.
  • Fixed memory leaking when scrolling LineSeries, and when disposing series or other items.
  • XYCursor was not firing selectended event if behavior was set to "selectX", "selectY", or "selectXY".
  • XYCursor was hiding selection when when behavior was set to "selectX", "selectY", or "selectXY".
  • SerialChart.series.clear() was not working properly.