NumProfiles Property

Use this property to return/set a value that determines the number of profiles to display on the chart.

[Visual Basic]
Property NumProfiles() As Integer
[C#]
int XYChartNETCtl.NumProfiles
[C++]
__property int XYChartNet::XYChartNETCtl::NumProfiles

Remarks

Value is an integer between 1 and 250,000.

Note   For Lite versions, the upper bound is 1,000.

Default Value

1

Example

XYChartNETCtl1 is the name of the XY Chart NET control instance placed on the form.

[Visual Basic]
Dim iValue As Integer
iValue = XYChartNETCtl1.NumProfiles   'Returns the number of profiles to display

XYChartNETCtl1.NumProfiles = 5        'Sets the number of profiles to plot to 5

XYChartNETCtl1.Refresh                'Refresh required to update chart with changes made

[C#]
int iValue;
iValue = XYChartNETCtl1.NumProfiles;  //Returns the number of profiles to display

XYChartNETCtl1.NumProfiles = 5;       //Sets the number of profiles to plot to 5

XYChartNETCtl1.Refresh();             //Refresh required to update chart with changes made

[C++]
int iValue;
iValue = XYChartNETCtl1->NumProfiles;  //Returns the number of profiles to display

XYChartNETCtl1->NumProfiles = 5;       //Sets the number of profiles to plot to 5

XYChartNETCtl1->Refresh();             //Refresh required to update chart with changes made

See Also

Properties