I am working with react-native and expo. I want to visualize data that consists of x and y points in this form [ [x1,y1] , [x2,y2] , [x3,y3] ]. However I cannot find a suitable library in react native to visualize this data as a line chart or bezier chart.
I have tried react-native-chart-kit however it takes x values as labels on x axis and does not plot the y points relative to x points. I also tried react-native-svg and victory-native and nothing seems to be working correctly or as it is supposed to work.
Can anyone guide me on how i can do that?
All what is needed is to plot one or more line charts on a graph and the y-points should be plotted relative to x-points.
thanks in advance.