MindFusion.Charting Programmer's Guide

FunctionArgs.FunctionDelta Property

See Also
 





Specifies the interval, through which function values are calculated.

Namespace: MindFusion.Charting
Assembly: MindFusion.Charting

 Syntax

C#  Copy Code

public double FunctionDelta { get; set; }

Visual Basic  Copy Code

Public Property FunctionDelta As Double

 Property Value

A double value.

 Remarks

The property specifies the difference between two adjacent intervals of calculation. Its value indicates how the interval built from the StartValue and EndValue properties is divided. Each interval division is identified as an argument to the function delegate and a function value for it is calculated. A smaller FunctionDelta value means more precise function calculation and smoother graphic.

Default value for the FunctionDelta property is 0.5.

 See Also