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
Like many others have mentioned, I'd like to thank anyone involved in the development of this library. It's saved me an incredible amount of time at work, and has inspired me to get more involved in the open source community!
I'm currently using a relatively simple use of a LineChartView to display a fully zoomed out graph of ~350 data points. However, even in the ChartsDemo example with LineChart1ViewController, I've noticed that when I use: lineChartDataSet.drawCubicEnabled = YES;
the performance on the graph tends to considerably decrease.
I'm testing with the LineChart1ViewController code with very slight modifications:
There are cases where many data points will cause performance degradation. That's just a fact that there's more to process. Specifically when drawing cubic lines, there's more for the CPU to calculate to find the position of each pixel.
I did try in the past to move the drawing to the GPU (as CoreGraphics draws mainly using the CPU), but haven't had the time yet to check more options that were suggested.
We have a discussion that's been sleepy for a while, here: #29
Like many others have mentioned, I'd like to thank anyone involved in the development of this library. It's saved me an incredible amount of time at work, and has inspired me to get more involved in the open source community!
I'm currently using a relatively simple use of a LineChartView to display a fully zoomed out graph of ~350 data points. However, even in the ChartsDemo example with LineChart1ViewController, I've noticed that when I use:
lineChartDataSet.drawCubicEnabled = YES;
the performance on the graph tends to considerably decrease.
I'm testing with the LineChart1ViewController code with very slight modifications:
The text was updated successfully, but these errors were encountered: