Skip to content

v2.0.0

Compare
Choose a tag to compare
@jxom jxom released this 23 Nov 10:57
· 100 commits to master since this release

Breaking changes

  • By default, the LineChart.Dot component is not pulseable by default, this is now opt in with the hasPulse prop.
    • Removed LineChart.Dot's outerPulse prop in favour of hasPulse & pulseBehaviour
    • See more in the docs

Before

<LineChart.Dot color="red" at={10} />
<LineChart.Dot color="red" at={10} pulseOuter="always" />
<LineChart.Dot color="red" at={10} pulseOuter="never" />

After

<LineChart.Dot color="red" at={10} hasPulse />
<LineChart.Dot color="red" at={10} hasPulse pulseBehaviour="always" />
<LineChart.Dot color="red" at={10} />

Features

Fixes

  • Fixed issue where LineChart.CursorCrosshair was causing Android to crash (#50)