MindFusion.Charting Programmer's Guide

FunctionArgs Constructor

See Also
 





Creates a new instance of the FunctionArgs class.

Namespace: MindFusion.Charting
Assembly: MindFusion.Charting

 Syntax

C#  Copy Code

public FunctionArgs (
    float sVal,
    float eVal
)

Visual Basic  Copy Code

Public New ( _
    sVal As Single, _
    eVal As Single _
)

JavaScript  Copy Code

function FunctionArgs (sVal, eVal)

 Parameters

sVal
The start value of the numerical interval;
eVal
The end value of the numerical interval;

 Remarks

The arguments of the FunctionArgs constructor are two parameters, which indicate the smallest and biggest float numbers, for which the delegate function is calculated. The newly created FunctionArgs object must be assigned to the chart FunctionArguments property. The control calculates the chart data as a result from the delegate function with parameters the numbers from the specified FunctionArguments interval.

 See Also