Reference for the Mosaic class Charts::RecordList
|
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.