Gets or sets a user-defined custom function object.

Namespace:  C1.Win.C1Chart
Assembly:  C1.Win.C1Chart.2 (in C1.Win.C1Chart.2.dll)

Syntax

C#
[DesignerSerializationVisibilityAttribute(DesignerSerializationVisibility.Hidden)]
[BrowsableAttribute(false)]
public ISimpleFunction CustomFunction { get; set; }
Visual Basic
<DesignerSerializationVisibilityAttribute(DesignerSerializationVisibility.Hidden)> _
<BrowsableAttribute(False)> _
Public Property CustomFunction As ISimpleFunction
	Get
	Set

Remarks

To obtain complete control of the Yfunction calculation, a class inheriting from ISimpleFunction can be implemented and instantiated. After the CustomFunction property is set to an instance of such a class object, the chart will plot the user-defined YFunction with the appropriate styles and legend entry.

See Also