Show / Hide Table of Contents

Class NSStatisticsDataSet

Syntax

Constructors

NSStatisticsDataSet()

Initializes a new instance of the NSStatisticsDataSet class.

Declaration
NSStatisticsDataSet

Methods

GetDescription()

Declaration
String GetDescription()
Returns
Type Description
String

Tooltip for data value.

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

GetLabel()

Declaration
String GetLabel()
Returns
Type Description
String

The label for the data set.

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

GetValues()

Declaration
NSStatisticsDataValue[] GetValues()
Returns
Type Description
NSStatisticsDataValue[]

Values in this set.

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
Type Description
Void
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
Type Description
Void
Examples
NSStatisticsDataSet thing;
String label;
thing.SetLabel(label);

SetValues(NSStatisticsDataValue[])

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);
In This Article
© SuperOffice. All rights reserved.
SuperOffice |  Community |  Release Notes |  Privacy |  Site feedback |  Search Docs |  About Docs |  Contribute |  Back to top