Native line chart configuration and styling

2
I am using line chart in native app to show timeseries data. On x-axis I want to format the date like we can do in web app using plotly options. I have checked line chart widget style properties but could not find anything for date. https://docs.mendix.com/refguide/native-styling-refguide Another requirement is to format the y-axis value to 2 decimal places and also set step and range of axis like 10, 20, 30 etc. Is it possible in native app chart?
asked
1 answers
0

I think the chart widgets for native are pretty basic. There actually is a Plotly library on npm (https://www.npmjs.com/package/react-native-plotly) which I'd be interested in if it works for you. It uses a WebView but stores the data offline, so it also works offline. If online is ok for you, why not just use a WebView and have a  page with plotly charts that's accessible with a deeplink?

answered