Class AxisCollection
The axis collection is used by a cell set to represent the axes returned by a query. Each Axis contained by an AxisCollection represents a set of congruent tuples organized along one or more hierarchies.
Inheritance
System.Object
AxisCollection
Namespace: Syncfusion.Olap.UWP.Data
Assembly: Syncfusion.Olap.UWP.dll
Syntax
public class AxisCollection : Collection<Axis>
Constructors
AxisCollection()
Initializes a new instance of the AxisCollection class.
Declaration
public AxisCollection()
AxisCollection(CellSet)
Initializes a new instance of the AxisCollection class.
Declaration
public AxisCollection(CellSet parentCellset)
Parameters
Type | Name | Description |
---|---|---|
CellSet | parentCellset | The parent CellSet. |
Properties
Item[Int32]
Gets or sets the Axis at the specified index.
Declaration
public Axis this[int index] { get; set; }
Parameters
Type | Name | Description |
---|---|---|
System.Int32 | index | The index of the axis. |
Property Value
Type |
---|
Axis |
Methods
Insert(Int32, Axis)
Inserts the axis at specified index.
Declaration
public void Insert(int index, Axis axis)
Parameters
Type | Name | Description |
---|---|---|
System.Int32 | index | The index where the axis has to be inserted. |
Axis | axis | The column or row axis. |
Remove(Axis)
Removes the specified axis.
Declaration
public void Remove(Axis axis)
Parameters
Type | Name | Description |
---|---|---|
Axis | axis | The column or row axis. |