Breaking changes
- By default, the
LineChart.Dot
component is not pulseable by default, this is now opt in with the hasPulse
prop.
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
- Added a
LineChart.Highlight
component.
Fixes
- Fixed issue where
LineChart.CursorCrosshair
was causing Android to crash (#50)