I'm using the SfChart component to draw line, column and area charts. I'm rendering, on the same chart, 4 series of 168 points each. These charts are rendered inside a custom developed widget that can be moved around and resized.
I'm experiencing a noticeable performance degradation when working with this amount of data. If I decrease the number of data points everything runs smoothly, but when working with this 672 data points UI interaction becomes extremely laggy.
Is there anaything I can try to improve chart performance?
I have tried setting the EnableCanvas property to true, but it doesn't seem to be supoported. I have also read about using FastLineSeries and FastLineBitmapSeries but can't find any reference on using them on Blazor.
Thanks!