I am attempting to plot a graph with 1000 data points using XYChart in mapView, but I’ve encountered that XYChart can only handle up to 255 points. Is there a setting or configuration that can increase the maximum number of points to 1000 for XYChart? If not, are there alternative plotting spaces or libraries that would allow me to achieve my goal of plotting all 1000 points?
These are set either by the configuration or using automatic scaling. Check what you have in the XAxis widget inside the XYChart for the following properties
rangeMode
max
min
If you have rangeMode = fromConfiguration you should be able to set the min and max in the configuration of the widget or databind them.
If the rangeMode = autoscale this should scale automatically.