Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
85
xamPivotGrid with custom Cube structure.
posted

Hi, i'm new with Infragistics xamPivotGrid and i have a question about whats the best way to use it in my aplication.

I have a custom model of a data Cube that have some classes as cube, dimension, mensure, hierarchy, level and many others on the server side. My application interacts with a relational database, ie, the data source of my cube comes from the relational database. That database has a mutidimensional model, with facts and dimensions.

So my application has a "server-side" similar to  Microsoft Analysis Server.

Can i use the XmlaDataSource without using Sql Analysis Services?

With this scenario whats the best way to set the datasource of the xampivotGrid?

I'm thinking about create my own datasource that extends Infragistics.Olap.DataSourceBase and implements IOlapViewModel and ISortableOlapDatasource  like XmlaDataSource and FlatDataSource.

Thank you so much.

--

Ricardo Cruz

 

Parents
No Data
Reply
  • 816
    posted

    Hi Ricardo,

    XmlaDataSource is designed to work with providers that use the XMLA standard: this can be SQL, or it can be another service like SAP, which we will be supporting as of the 10.3 release.

    Even if XmlaDataSource isn't the right way to access your database, you can always load the data into your application the way you're doing already, then use FlatDataSource with data in the form of an IEnumerable<T> -- basically, if you can get the data into your app, then you can get the data into xamPivotGrid.

    Let me know if you have any more questions.

Children