Class NSStatisticsDataSet
Syntax
Constructors
NSStatisticsDataSet()
Initializes a new instance of the NSStatisticsDataSet class.
Declaration
Methods
GetDescription()
Declaration
Returns
Type |
Description |
String |
Tooltip for data value.
|
Examples
NSStatisticsDataSet thing;
String description = thing.GetDescription();
GetLabel()
Declaration
Returns
Type |
Description |
String |
The label for the data set.
|
Examples
NSStatisticsDataSet thing;
String label = thing.GetLabel();
GetValues()
Declaration
NSStatisticsDataValue[] GetValues()
Returns
Examples
NSStatisticsDataSet thing;
NSStatisticsDataValue[] values = thing.GetValues();
SetDescription(String)
Declaration
Void SetDescription(String description)
Parameters
Type |
Name |
Description |
String |
description |
Tooltip for data value.
|
Returns
Examples
NSStatisticsDataSet thing;
String description;
thing.SetDescription(description);
SetLabel(String)
Declaration
Void SetLabel(String label)
Parameters
Type |
Name |
Description |
String |
label |
The label for the data set.
|
Returns
Examples
NSStatisticsDataSet thing;
String label;
thing.SetLabel(label);
SetValues(NSStatisticsDataValue[])
Declaration
Void SetValues(NSStatisticsDataValue[] values)
Parameters
Returns
Examples
NSStatisticsDataSet thing;
NSStatisticsDataValue[] values;
thing.SetValues(values);