Class NSStatisticsDataSet

Constructors

NSStatisticsDataSet()

Initializes a new instance of the NSStatisticsDataSet class.

Declaration

NSStatisticsDataSet

Methods

GetDescription()

Declaration

String GetDescription()

Examples

NSStatisticsDataSet thing;
String description = thing.GetDescription();

Returns

Type Description
String Tooltip for data value.

GetLabel()

Declaration

String GetLabel()

Examples

NSStatisticsDataSet thing;
String label = thing.GetLabel();

Returns

Type Description
String The label for the data set.

GetValues()

Declaration

NSStatisticsDataValue[] GetValues()

Examples

NSStatisticsDataSet thing;
NSStatisticsDataValue[] values = thing.GetValues();

Returns

Type Description
NSStatisticsDataValue[] Values in this set.

SetDescription(String)

Declaration

Void SetDescription(String description)

Examples

NSStatisticsDataSet thing;
String description;
thing.SetDescription(description);

Parameters

Type Name Description
String description Tooltip for data value.

Returns

Type Description
Void

SetLabel(String)

Declaration

Void SetLabel(String label)

Examples

NSStatisticsDataSet thing;
String label;
thing.SetLabel(label);

Parameters

Type Name Description
String label The label for the data set.

Returns

Type Description
Void

SetValues(NSStatisticsDataValue[])

Declaration

Void SetValues(NSStatisticsDataValue[] values)

Examples

NSStatisticsDataSet thing;
NSStatisticsDataValue[] values;
thing.SetValues(values);

Parameters

Type Name Description
NSStatisticsDataValue[] values Values in this set.

Returns

Type Description
Void