Sets the value of the OptimizationRadius attached property for a specified chart. The property controls rendering optimization for line and area charts with large data arrays. If the distance between consequent data points is less than radius the point is skipped from rendering.

Namespace:  C1.Silverlight.Chart
Assembly:  C1.Silverlight.Chart (in C1.Silverlight.Chart.dll)

Syntax

C#
public static void SetOptimizationRadius(
	DependencyObject chart,
	double value
)
Visual Basic
Public Shared Sub SetOptimizationRadius ( _
	chart As DependencyObject, _
	value As Double _
)

Remarks

By default the optimization is switch off(OptimizationRadius=double.NaN).

See Also