Reference for the Mosaic class Charts::RecordList

Charts::RecordList
NoOfItems
TotalValue
firstRecord
lastRecord
AddRecord()
ClearList()
GetRecord()

The class 'RecordList' implements a list of records used to describe a chart diagram, like a pie or bar chart.

method void AddRecord
(
arg int32 aValue,
arg color aColor
);

The method 'AddRecord' stores the given record at the end of the chained list of records.

method void ClearList();

The method 'ClearList' is used to clear the list of records.

method Charts::Record GetRecord
(
arg int32 aIndex
);

The method GetRecord returns the record object with the given index.

property int32 NoOfItems = 10;

The property NoOfItems contains the number of coordinates within the chained list of coordinates.

property int32 TotalValue = 0;

The property 'TotalValue' accumulates the sum of all record values.

var Charts::Record firstRecord = null;

Reference to the first data set, used to build up a list of records.

var Charts::Record lastRecord = null;

Reference to the last data set, used to build up a list of records.