FormidableLabs / victory-native-xl

A charting library for React Native with a focus on performance and customization.
https://commerce.nearform.com/open-source/victory-native
677 stars 50 forks source link

Time Series Line Chart #384

Open juanmigdr opened 6 days ago

juanmigdr commented 6 days ago

Description

I am using Victory Charts in my react native expo project and was wondering if it would be possible to create a Time-Series chart but I don't see this is a current feature.

Proposal

Add support for time series chart which takes in two arguments. X = Date | Y = Value Thanks!

zibs commented 6 days ago

I think this may already be possible but it requires you to structure your data slightly differently. Take a look at the example bar chart in the example repo. With a combination of formatXLabel you are able to transform your x values into anything you need, including dates to display.

Let me know if that doesn't cover your use case.