How does everyone handle graphing – specifically in a DataField ? I’ve created a basic graph that scales on both X and Y axes, but I’m scratching my head about how to best optimize it. I ran into watchdog errors while trying to draw too many data points - so I limit drawing to the number of available pixels on the x-scale (for example ~380 on an Epix2) by using a scaling/factor constant based on the size of the array. But that will still leave me with a very large array of altitude values for long activities. What would be a good way of keeping the array to a manageable size ? I thought about constantly sampling the array to only keep 380 equally spaced data values, but I’m afraid the data will get diluted and the graph won’t be very representative of the altitude profile.
Also, I haven’t found a way - but is it possible to have scroll-able/swipe-able graph like the built in ones on the watch ?