Browse By Tags

  • XamPivotGrid scrolling performance

    Hi,

    I’m currently using XamPivotGrid with a FlatDataSource bound to an ObservableCollection containing about 1500 items. The source object class consists of 10 members. Three of them  are measures and three of them are dimensions. If I expand all…

  • Display Measure name in the grid when there is only 1 measure

    Looking at this example:

    https://www.infragistics.com/samples/silverlight/pivot-grid/#/flatdatasource-xaml

    When I leave only one measure in there it does not diplay it on top of the columns...? is it possible for keep the measure as the header on top…

  • copy and paste in xampivotgrid?

    Hi,

    Is there a copy and paste feature in the xamPivotGrid? I know there is one for the xamGrid but not for the xamPivotGrid? If not, is it going to be in the next release of the controls or is it easy to implement in the current controls?

    Thanks…

  • Changing Result / Cells from xamPivotGrid without generating a new FlatDataSource

    Hello, this is Christian from Saarbrücken in Germany.

     

    I'm trying to change the xamPivotGrid-cells data after the Cube was generated and displayed, but without any success.

     

    This is the structure of the businessobject-list that i am building…

  • XamPivotGrid Custom Aggregator (WFP)

    Custom aggregator:

    I'm looking for a method of implementing a custom measure based on basic calculation using 2 other existing measures. The main goal is to prevent the XamPivotGrid from doing any kind of aggregation.

    I think this is common situation…

  • XamPivotDataSelector - customizing

    Hi

    1) Is it possible to change "measure" label? (see screenshot below)

    2) Is it possible to hide some of dimensions (for example "City")?

  • Adding InitalRows and Cols to FlatDataSource throws an exception

    Hi,

    I am using xamPivotGrid and FlatDataSource as its source.

    When I add rows and cols to FlatDataSource (as below), I get the following exception

    flatDataSource.Columns = DataSourceBase.GenerateInitialItems("[Index Name].[Index Name]");…

  • Right alignment of cell values

    Hi,

    By default the Pivotgrid shows the numbers in the cells left aligned.

    How is it possible in c#/code behind to get all numbers right aligned?

    /Erik

  • Derived Measure field from the distinct count of another field

    How can I create a derived measure field dynamically, that calculates the distinct count of another field?

     

    For example, take the flat table below that contains raw data depicting a list of men who went to an events and met women:

     

    Male_N…

  • Changing height and width of Filter DropDown control in XamPivotGrid

    Hi,

    In the filter drop down, we have large number of Members being displayed. We want to increase height and Width of the drop down control

    Can you please provide me a way with the help of which we can increase height and width of the filter drop down…

  • XAMPivot Grid filter does not respond

    Hi, I have Olap Cube and added customdata source to the pivot grid. WHen I choose the listed item from row filter list and hit OK, it does nothing.

  • Customize XamPivotGrid Layout - RowsFieldDropAreaControl initial size

    I want to increase the width of the initial RowsFieldDropAreaControl. Its pretty much still there in the PivotGridPanel as part of the original template.  I added a ComboBox before the ColumnsFieldDropAreaControl and made that area bigger , and I want the…

  • Hiding pivot areas in XamPivotGrid using XAML

    Hello

    I've found a post that deals with hiding pivot grid areas in code:

    https://www.infragistics.com/community/forums/f/retired-products-and-controls/53751/can-i-hide-pivotgrid-areas

     xamPivotGrid.RowsDropControl.Visibility = Visibility.Collapsed;
     
  • selected values from filters

    when you have a pivot grid bound to a FlatDataSource and you have one or more 'filters' tied to the datasource... 

    is it possible to retrieve the selected values of the filters dropdown when they are selected?

    is it possible to retrieve what…

  • Authentication and msmdpump.dll

    Hi,

     

    My company is currently evaluating the pivotgrid control to replace one that we currently use in our ASP.NET environment. The problem, however, is that this Silverlight version seems to only give me the option to connect via XML/A via the msmdpump…

  • custom message in tool tip for every cell of pivot grid.

    I was looking to add some detailed info in tooltip of every cell of a pivot grid. By saying detail I mean like row and column details for that pivot cell.

    But was not able to put the template for that. Help required on this.

    -Manas.

  • Change PivotGrid Resource Strings (error messages)

    How to change pivotGrid resource string (for exactly error message)?

    For example, when we drag and drop fields from the field selector into the xamPivotGrid (columns or item collection) and the field already exists occurs an error (like, "Item is already…

  • xamPivotGrid Cell Display Format Issue

    Hi,

    Our company(reportdev) wants to launch an OLAP analysis and reporting tool. Everything is going fine but we are now in need of a smart, intelligent and on the fly analytical powerfull pivot-grid that has capabilities of the followings to deliver our customer…

  • Are Named Sets supported?

    I came across the following post that indicates that Named Sets are supported and should appear in the XamPivotDataSelector:

    http://forums.infragistics.com/forums/p/51068/268122.aspx#268122

    However, in my own testing I am unable to see the Named Sets…

  • When to be sure that my Dimensions is loaded and redable

    Hi

    I want to be able to loop and Drill MemberFilters in my Rows/Columns/Filters in my pivotGrid.

    This is my code for doing this:

    //Rows
    for (int i = 0; i < pivotGrid.DataSource.Rows.Count; i++)
    {
    IFilterViewModel fvm = pivotGrid.DataSource.Rows…

  • Can't connect to OLAP datasource

    I am developing my first Silverlight DV application.  I thought I would start simply with a grid, a splitter, and a dataselector.  I already had a datacube, so I followed the instructions on MS Technet to set up Http access to it.  Here is the code:

    <…
  • XamPivotGrid only drills two levels

    Hello,

    I'm using a XamPivotGrid with a custom ADOMDDataProvider.

    It's working fine but i can't drill more than two levels.

    No exceptions are thrown and the Members that i can't expand remain with the following values:

    • HasChildreen…
  • Dynamic proeprties in data source

    We are evaluating the Silverlight data visualization controls. So far we are very happy with how the pivot grid, charts and data selector controls works together in displaying and working with data. However, up to this point we have only worked with predefined…

  • Serialize pivotgrid including data?

    Hi,
    Would it be possible in any way to serialize a pivotgrid loaded with flat data - including the data. I would like to save the grid with data to a binary blob field in a database.
    /Erik
  • How can I use string format to the calculated measure on the XamPivotGrid?

    Hi, Infragistics team.

    I am trying to add Calculated member on my pivot grid.

    So, I used CalculatedMeasureView model and declared FormatString for the Calculated Member.

    Here is my code.

    ICalculatedItemViewModel calcMeasureViewModel = new CalculatedMeasureViewModel…