Skip to content

Releases: leeoniya/uPlot

1.6.20

02 May 17:09
Compare
Choose a tag to compare

1.6.19

08 Feb 06:39
Compare
Choose a tag to compare

1.6.18

17 Dec 05:15
Compare
Choose a tag to compare

1.6.17

14 Nov 09:20
Compare
Choose a tag to compare

1.6.16

15 Sep 22:42
Compare
Choose a tag to compare

1.6.15

13 Aug 07:02
Compare
Choose a tag to compare

1.6.14

21 Jul 21:29
Compare
Choose a tag to compare

1.6.13

16 Jun 23:33
Compare
Choose a tag to compare

1.6.12...1.6.13

  • detect & sync devicePixelRatio changes (e.g. browser zoom). this makes for an SVG-like experience on desktop but not mobile, where pinch zooming does not trigger dppx MediaQueryList change events :(
  • accept null values in Range.MinMax tuple to indicate auto-ranging. (#526)
  • add series.points.filter() for custom per-point show/hide logic & pass in gaps array from series.paths()
  • add cursor.idxs which holds indices returned by cursor.dataIdx() (for read-back)
  • fix uPlot.rangeNum() in softMode: 2 auto-ranging flat/all-0 values to -100,100
  • improve axis auto-size logic in demo to actually use measureText() and add in the required axis.ticks.size and axis.gap

1.6.12

04 Jun 22:44
Compare
Choose a tag to compare

1.6.11...1.6.12

  • bars pathBuilder now uses the minimum x distance between all adjacent points in dataset to determine available space for a bar. previously only the first two points were used, which may create too-wide bars when dataset is not evenly spaced.
  • auto point visibility now uses x distance between first and last in-view points to determine avg point density. previously it always used points-in-view and full width of chart, which was inaccurate if dataset does not actually span full chart (x scale is wider than dataset).

1.6.11

03 Jun 03:38
Compare
Choose a tag to compare

1.6.10...1.6.11

  • fix stroke being wrongly clipped (along with fill) when using bands with non-bars pathbuilders. see grafana/grafana#34904