Get Methods
Are there methods to get the:
1.Current Number of Rows in the OlapGrid
2.Current member that a dimension is being filtered on
3.List of values in a particular row or entire grid.
4.Value of a dimension member not being displayed
1.Current Number of Rows in the OlapGrid
2.Current member that a dimension is being filtered on
3.List of values in a particular row or entire grid.
4.Value of a dimension member not being displayed
SIGN IN To post a reply.
4 Replies
HV
Hari Venkatesh E
Syncfusion Team
August 6, 2010 11:32 AM UTC
Hi Ryan,
Here are some of the code snippet providing solution to the following scenarios.
1)Current number of rows in OLAP Grid
int gridRowCount = this.olapGrid1.OlapDataManager.PivotEngine.RowsCount;
2)Values in a particular row
PivotRowDescriptor gridRowData = this.olapGrid1.OlapDataManager.PivotEngine.GetRowAt(0);
3)Values in an entire OLAP Grid
List gridData = this.olapGrid1.OlapDataManager.PivotEngine.TableColumns;
And also we would very much appreciate if you could provide us detailed information on the following scenarios:
- Current member that a dimension is being filtered on.
- Value of a dimension member not being displayed.
Thanks,
E.Hari Venkatesh.
Here are some of the code snippet providing solution to the following scenarios.
1)Current number of rows in OLAP Grid
int gridRowCount = this.olapGrid1.OlapDataManager.PivotEngine.RowsCount;
2)Values in a particular row
PivotRowDescriptor gridRowData = this.olapGrid1.OlapDataManager.PivotEngine.GetRowAt(0);
3)Values in an entire OLAP Grid
List
And also we would very much appreciate if you could provide us detailed information on the following scenarios:
- Current member that a dimension is being filtered on.
- Value of a dimension member not being displayed.
Thanks,
E.Hari Venkatesh.
RS
Ryan Schroeder
August 6, 2010 07:31 PM UTC
current dimension member being filtered on:
-the member or members currently selected in the member editor for both axis and the slicer.
value of dimensions not being displayed:
-the values of the currently selected measure or measures in the column(s) that a dimension that is not currently on the grid would be.
-the member or members currently selected in the member editor for both axis and the slicer.
value of dimensions not being displayed:
-the values of the currently selected measure or measures in the column(s) that a dimension that is not currently on the grid would be.
HV
Hari Venkatesh E
Syncfusion Team
August 10, 2010 12:56 PM UTC
Hi Ryan,
We regret to let you know that currently we don’t support any method or property to obtain the currently selected member in member editor as well as for the measure(s).
Thanks,
E.Hari Venkatesh.
We regret to let you know that currently we don’t support any method or property to obtain the currently selected member in member editor as well as for the measure(s).
Thanks,
E.Hari Venkatesh.
Hi Ryan,
We regret to let you know that currently we don’t support any method or property to obtain the currently selected member in member editor as well as for the measure(s).
Thanks,
E.Hari Venkatesh.
Thanks
SIGN IN To post a reply.
- 4 Replies
- 3 Participants
-
RS Ryan Schroeder
- Aug 4, 2010 02:22 PM UTC
- Mar 30, 2018 11:10 AM UTC