XY Chart NET 3 Control Reference
NumProfiles Property

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

Syntax
[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.

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.

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
// XYChartNETCtl1 is the name of the XY Chart NET control instance placed on the form.

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
// XYChartNETCtl1 is the name of the XY Chart NET control instance placed on the form.

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

 

 


© 2003 - 2013 ControlEng Corporation. All rights reserved.