Class HierarchicalRootRecord
Virtual root record. Made to allow set text / value for the root if it is shown in the Hierarchical chart (e.g. central zone of the Sunburst chart)
Inherited Members
Namespace: FastReport.BG.Data
Assembly: FastReport.BG.dll
Syntax
public class HierarchicalRootRecord : HierarchicalRecord, IHierarchicalRecord, IRecord
Constructors
HierarchicalRootRecord()
Constructs HierarchicalRootRecord instance
Declaration
public HierarchicalRootRecord()
Properties
Children
Children collection
Declaration
[Browsable(false)]
public override HierarchicalRecords Children { get; }
Property Value
Type | Description |
---|---|
HierarchicalRecords |
Overrides
RecordType
Record type. Always equal HierarchicalRecordType.Group for the root record
Declaration
[Browsable(false)]
public override HierarchicalRecordType RecordType { get; set; }
Property Value
Type | Description |
---|---|
HierarchicalRecordType |
Overrides
See Also
Value
Root record Value. Equals Sum of children values
Declaration
[Browsable(false)]
public override double Value { get; set; }
Property Value
Type | Description |
---|---|
System.Double |
Overrides
Methods
SetChildren(HierarchicalRecords)
Replaces internal children field by the passed object
Declaration
public void SetChildren(HierarchicalRecords records)
Parameters
Type | Name | Description |
---|---|---|
HierarchicalRecords | records | HierarchicalRecords to replace internal children field |
Remarks
Don't call this method in your code. This method is only required for DataSource implementations