ComponentOne Chart for WPF and Silverlight
Chart for WPF and Silverlight / Chart Features / Performance Optimization / Enabling Chart Optimization
In This Topic
    Enabling Chart Optimization
    In This Topic

    C1Chart can handle large batches of data, which sometimes leads to performance issues. These issues can be solved simply with the SetOptimizationRadius() method. Using this method will reduce the number of repetitive data points.

    The following code demonstrates the method:

    C#
    Copy Code
    LineAreaOptions.SetOptimizationRadius(c1Chart1, 5);
    

     

    See Also