Releases: coinjar/react-native-wagmi-charts
Releases · coinjar/react-native-wagmi-charts
v2.0.0
Breaking changes
- By default, the
LineChart.Dot
component is not pulseable by default, this is now opt in with thehasPulse
prop.- Removed
LineChart.Dot
'souterPulse
prop in favour ofhasPulse
&pulseBehaviour
- See more in the docs
- Removed
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)