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