margelo / react-native-graph

📈 Beautiful, high-performance Graphs and Charts for React Native built with Skia
https://margelo.io
MIT License
2.08k stars 118 forks source link

How do you display the date/time when panning the graph please? #83

Closed ziziele closed 1 year ago

michaelpomogajko commented 1 year ago
const [date, setDate] = useState();

<Text>{date.toDateString()}</Text>
<LineGraph 
  enablePanGesture
  onPointSelected={(p) => setDate(p.date)}
/>