Hi Folks, Today I learned the concept of OLAP DataGrid in Adobe Flex.The OLAPDataGrid control expands on the functionality of the AdvancedDataGrid control to add support for the display of the results of OLAP queries. Like all Flex data grid controls, the OLAPDataGrid control is designed to display data in a two-dimensional representation of rows and columns.
AdvancedDataGrid control:
Column dragging is not allowed in the OLAPDataGrid control.
You cannot edit cells in the OLAPDataGrid control because cell data is a result of a query and does not correspond to a single data value in the OLAP cube.
You cannot sort columns by clicking on header in the OLAPDataGrid control. Sorting is supported at the dimension level so that you can change the order of members of that dimension.
Properties
defaultCellString=”NaN”
headerRendererProviders=”[]“
itemRendererProviders=”[]“
Styles
columnAxisHeaderStyleName=”undefined”
rowAxisHeaderStyleName=”undefined”
/>
program:
dataProvider=”{flatData}”
id=”myMXMLCube”
complete=”runQuery(event);”>
Screen Shot: