Art Kullashi
Art Kullashi
Make sure your points have different date values, otherwise the graph doesn't render. Example: ` const dataPoints = [ {value: 10, date: new Date(1675904400000)}, {value: 20, date: new Date(1675990800000)} ]`
@Joelis57 Try wrapping your entire view where your graph is with a `GestureHandlerRootView` imported from react-native-gesture-handler
Can confirm this somewhat fixes the issue. The path of the graph still refuses to interpolate between some data changes. Eg. between two data sets that mirror each other. I...