I've got two questions/issues regarding the AspxPivotGrid.

When I use the customization window and add columns in the 'Row Area' and 'Data Area' and update the report. The grid generates properly but the graph doesn't generate. However when you add a field in the 'Column Area', the graph then generates.

It appears that the graph only generates when there are at least a column specified, even though the 'Data Area' headers is exactly the data we need. I have simulated this with the graph demo you have on your site. Is this expected behavior?

Secondly, when I add a DateTime to the 'Row Area' and a String 'Column Area' it's fine. I then swap the columns around, again the pivot is fine. Switch it back again you get the following error:

System.ArgumentException: The type of the "Arguments" argument data member isn't compatible with the date-time scale.

at DevExpress.XtraCharts.SeriesBase.CheckArgumentDataMember(Object dataSource, String dataMember, ScaleType argumentScaleType)

Any suggestions / solutions?

link|improve this question
Thanks for helping out with the formatting Soner! – Madabitjer Jun 2 '11 at 5:46
feedback

1 Answer

up vote 1 down vote accepted

If you have fields in the 'Row Area' and 'Data Area', but not in the 'Column Area', the grid shows the column grand totals. You can show these in the chart by setting the ShowColumnGrandTotals property, e.g.:

ASPxPivotGrid1.OptionsChartDataSource.ShowColumnGrandTotals = True

The default value of not showing grand totals is understandable, since most charts show either:

  • aggregate values grouped by a row or column field, but no grand totals, or
  • only grand total values from rows or columns.
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.