Questions tagged [pivot-grid]

27 questions
2
votes
0 answers

Entire Angular2 application stops working after a exception is thrown inside a PivotGrid databinding

We have a Angular2 application in which we are using some third party controls in it i.e. IgniteUI/Infragistics IgGrid and PivotGrid controls. The global exception handling for the application is handled like below. export class CustomErrorHandler…
Krishnan
  • 958
  • 5
  • 21
  • 44
1
vote
0 answers

it is possible to add a character limit to the data displayed in a dx:PivotGridField Report in ASP.NET?

I have tried a custom template for the data cells of DevExpress.Web.ASPxPivotGrid.PivotGridField is CellTemplate for 20 character limit
Ronak Munjapara
  • 459
  • 5
  • 8
1
vote
2 answers

Using DisplayNameAttribute in DevExpress PivotGridControl

Is there any way to use [DisplayName] defined for each property as fields in a PivotGridControl? public class Dto { [DisplayName("Identifier")] public int Id {get;set;} [DisplayName("Number")] public string Num {get;set;} ... …
Masoud
  • 8,020
  • 12
  • 62
  • 123
1
vote
0 answers

Can we create a custom aggregate function on two columns for pivot grid in extjs?

As per pivot.js code * @param {Array} records Records to process. * @param {String} measure Field to aggregate by. * @param {Ext.pivot.matrix.Base} matrix The matrix object reference. * @param {String} rowGroupKey Key of the left axis…
Coded9
  • 159
  • 2
  • 14
1
vote
1 answer

SSAS webservice msmdpump.dll return error on 'OPTIONS'

I am having trouble getting a response from SSAS web service "http://localhost/OLAP/msmdpump.dll" in kendo pivot grid. The thrown error is
Amir Paziraee
  • 86
  • 2
  • 8
0
votes
0 answers

CustomFieldValueCells firing before CustomCellDisplayText

DevExpress WinForm Pivot Grid. I am setting custom display text for cells of a data area field Diff in CustomCellDisplayText event. I then want to hide Diff columns that have all blank display text. I am hiding the blank columns in…
Y U
  • 65
  • 5
0
votes
0 answers

devextreme pivot grid date groups handler.apply error

Midway through this: https://js.devexpress.com/Documentation/Guide/UI_Components/PivotGrid/Fields_and_Areas/#Areas It talks about groups. This is my implementation for grouping daily data into months and year columns: // Cast Created At to be date…
Casey
  • 444
  • 1
  • 7
  • 22
0
votes
1 answer

DevExpress Typescript Field Type ts(2345)

I am trying to add some fields to create date groupings, but I am getting a type error. let dateGroups: { area: string; dataField: string; dataType: string; groupInterval: string; }[] Argument of type '{ area: string; dataField:…
Casey
  • 444
  • 1
  • 7
  • 22
0
votes
0 answers

Display data in MVC Kendo Pivot Grid2

`Need some example which can help me to bind data into MVC kendo Pivot Grid2. I have to display data in Kendo PIvot grid 2 in MVC. I tried to display data in kendo Pivot Grid2 in MVC. I want to read data from MVC action method and bind to Kendo Grid…
0
votes
0 answers

I have list of objects and want to display in dimensions in mvc pivot grid in mvc

I have one table which stored questions as column names and answers as column values and want to display those data in PivotGrid2. For that, I have created the below model which stores the collection of values. Want to display that in pivotgrod2. I…
0
votes
0 answers

how to arrange multilevel hierarchical data for DevExtreme

everybody. I have a problem on trying a Devextreme. So my problem is, i have 1 parent object. it has 4 property. According to DevExtreme Pivot grid, all has 1 key. enter image description here. I need to display at least 2 key on my report like…
0
votes
1 answer

Error recording macro to create Pivot Grid

I'm seeing this error: Run-time error '1004' Application-defined or object defined error Error. I've looked over several post but can't figure it out. The error is on this line when creating the ActiveWorkbook.PivotCaches.Create(). Seems like it is…
ttest2727
  • 45
  • 6
0
votes
0 answers

Filter a list of address objects by a list of string postcodes

I have a list of address objects which is used as a data source on a pivot grid. What I have to do is be able to filter the list down based on a list of postcodes. So, lets say I have 100 address objects in the list (Simple object with Address1,…
Martin
  • 21
  • 7
0
votes
1 answer

DevExpress PivotGrid controls on modal don't work, loading bar pops up all the time and doesn't disappear at ASP.NET MVC

I need to open a button triggered popup in a project with asp.net mvc. I send a parameter with Ajax and set the partial view to the body of the modal. Data comes in, pivot grid is created, but pivot grid events do not work. When I click on…
MSM
  • 101
  • 5
0
votes
2 answers

How to hide total sum column and row in Kendo UI asp.net mvc Pivot grid

In the Pivot grid (Kendo UI asp.net MVC), I have tried to hide the last column and row but could not succeed (ie. the column and row that shows total field which is default in the grid). I search on google but I didn't get the correct answer. Can…
1
2