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
205
Problem: process a cube (in SSAS) by using XAML
posted

Hello,

Does anyone know how I can process a cube, in SSAS, whith a button in the application that I created?

The application was created with the components XamPivotDataSelector, and XamPivotGrid XamDataChart.

My aplication contain only XAML code.

Best Regards

 

sseixas

Parents
No Data
Reply
  • 17559
    posted

    Hello Sseixas,

     

    I have been looking through your questions and I can suggest you have a look at the following link from our sample browser where is shown how you can bound XamPivotGrid, XamDataChart and XamPivotDataSelector to common XmlaDataSource:

    http://samples.infragistics.com/sldv/RunSamples.aspx?cn=pivot-grid#/pivot-grid/integration-with-datachart

     

    As shown in the you can just define all of your columns, rows and measures in your XamlaDataSource:

     
    1. <igOlap:XmlaDataSource x:Key="DataSource"
    2.                          ServerUri="http://sampledata.infragistics.com/olap/msmdpump.dll"
    3.                          Database="Adventure Works DW Standard Edition"
    4.                          Cube="Adventure Works"
    5.                          Filters="[Sales Territory].[Sales Territory Country]{[Sales Territory].[Sales Territory Country].&amp;[United Kingdom]}"
    6.                          Columns="[Date].[Calendar]"
    7.                          Rows="[Geography].[City]"
    8.                          Measures="Reseller Sales Amount" />

    And every change in the hierarchies will be applied to all of the components bound to this common datasource. For example if you expand some of the hierarchies from XamPivotGrid, they will get expanded in XamDataChart as well.

     

    If you have any additional questions on this matter, please feel free to ask.

Children
  • 205
    posted in reply to [Infragistics] Elena

    Hello Elena Ganeva 

    Sorry for the delay in responding your post.

    What I want is to create a button and wen clicking, he process the cube / multidimensional database that I have on my machine.

    This button is to insert in my solution with Infragistics components (xamPivotGrid, xamPivotDataSelector, xamDataChart, xamPieChat). When the user clicks the button you want and process the cube in question selected or selected database.

    Best regards


    sseixas