ComponentOne Chart for WPF and Silverlight
Chart for WPF and Silverlight / Chart Features / Plotting Functions / Calculating the Value for Functions
In This Topic
    Calculating the Value for Functions
    In This Topic

    You can calculate the value of the functions for Parametric and YFunction using the CalculateValue() method.

    The following code demonstrates the CalculateValue() method:

    C#
    Copy Code
    class MySeries : FunctionSeries
    {
        void SomeMethod()
        {
           CalculateValue(...);
        }
    }
    

     

    See Also