You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I have a really simple app form one of the examples. When I tried to populate the chart with more than 200k data for a series I encountered this problem. When I give 4 series of 100k data it renders without a problem.Waits for a second or two and it is there but when I try to render a series with 110671 data points it doesn't render at all. No error, no exception just waits endlessly without doing anything. 110670 data points renders just fine in one or two seconds like I mentioned above. If I add another series data point limit for each individual series goes down by one. If I want to render two series for example, now my limit is 110669 data points. In Android builds it works just fine without any limit. I encounter this problem only in IOS builds. Here is my App.js:
`import React from 'react';
import { StyleSheet, View, Text } from 'react-native';
import HighchartsReactNative from '@highcharts/highcharts-react-native'
const modules = ['boost']
export default class App extends React.Component {
constructor(props) {
super(props);
Hi @omertimucin,
Thank you for reporting. Could you attach your series object as a JSON? I will try to reproduce the issue in the native Highcharts / JS.
I have a really simple app form one of the examples. When I tried to populate the chart with more than 200k data for a series I encountered this problem. When I give 4 series of 100k data it renders without a problem.Waits for a second or two and it is there but when I try to render a series with 110671 data points it doesn't render at all. No error, no exception just waits endlessly without doing anything. 110670 data points renders just fine in one or two seconds like I mentioned above. If I add another series data point limit for each individual series goes down by one. If I want to render two series for example, now my limit is 110669 data points. In Android builds it works just fine without any limit. I encounter this problem only in IOS builds. Here is my App.js:
`import React from 'react';
import { StyleSheet, View, Text } from 'react-native';
import HighchartsReactNative from '@highcharts/highcharts-react-native'
const modules = ['boost']
export default class App extends React.Component {
constructor(props) {
super(props);
}
const styles = StyleSheet.create({
container: {
backgroundColor: '#fff',
justifyContent: 'center',
flex: 1
}
});`
Is there something wrong with my setup?
The text was updated successfully, but these errors were encountered: