-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDefault.aspx.cs
246 lines (240 loc) · 14.9 KB
/
Default.aspx.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
using System;
using System.Collections.Generic;
using DevExpress.Web.ASPxPivotGrid;
using DevExpress.Data.PivotGrid;
using DevExpress.XtraPivotGrid;
namespace SummaryDisplayMode {
public partial class DefaultForm : System.Web.UI.Page {
protected void Page_Load(object sender, EventArgs e) {
if(!IsPostBack && !IsCallback)
SetSelectedConfiguration();
}
const string SummaryDisplayTypeDataFieldID = "summaryDisplayTypeDataField";
const string SourceDataFieldID = "sourceDataField";
enum SummaryDisplayTypeGroup { Variation = 0, Percentage = 1, Rank = 2};
SummaryDisplayTypeGroup SelectedGroup {
get { return (SummaryDisplayTypeGroup)(rgSummaryDisplayTypeGroups.SelectedIndex); }
}
string SourceDataFieldName {
get { return cachedSourceDataFieldName.Value; }
set { cachedSourceDataFieldName.Value = value; }
}
PivotGridField SourceDataField {
get { return pivotGrid.Fields[SourceDataFieldID]; }
}
PivotGridField SummaryDisplayTypeDataField {
get { return pivotGrid.Fields[SummaryDisplayTypeDataFieldID]; }
}
protected void rgSummaryDisplayTypeGroups_SelectedIndexChanged(object sender, EventArgs e) {
SetSelectedConfiguration();
}
void SetSelectedConfiguration() {
SetSelectedGroup();
SetSelectedSummaryDisplayType();
}
void SetSelectedGroup() {
ConfigurePivotGridLayout(SelectedGroup);
bool isVariation = (SelectedGroup == SummaryDisplayTypeGroup.Variation);
cbAllowCrossGroupVariation.Visible = isVariation;
if(SourceDataField != null)
cbShowRawValues.Checked = SourceDataField.Visible;
ConfigureSummaryDisplayTypeComboBox(SelectedGroup);
}
void ConfigurePivotGridLayout(SummaryDisplayTypeGroup typeGroup) {
pivotGrid.BeginUpdate();
switch(typeGroup) {
case SummaryDisplayTypeGroup.Variation: {
pivotGrid.DataSourceID = "SalesPersonsDataSource";
pivotGrid.Fields.Clear();
PivotGridField fieldYear = pivotGrid.Fields.AddDataSourceColumn("OrderDate", PivotArea.ColumnArea, PivotGroupInterval.DateYear );
fieldYear.Caption = "Year";
PivotGridField fieldQuarter = pivotGrid.Fields.AddDataSourceColumn("OrderDate", PivotArea.ColumnArea, PivotGroupInterval.DateQuarter);
fieldQuarter.ValueFormat.FormatString = "Qtr {0}";
fieldQuarter.ValueFormat.FormatType = DevExpress.Utils.FormatType.Custom;
fieldQuarter.Caption = "Quarter";
PivotGridField salesPersonField = pivotGrid.Fields.AddDataSourceColumn("Sales Person", PivotArea.RowArea);
SourceDataFieldName = "OrderID";
PivotGridField sourceDataField = pivotGrid.Fields.AddDataSourceColumn(SourceDataFieldName, PivotArea.DataArea);
sourceDataField.SummaryType = PivotSummaryType.Count;
sourceDataField.Caption = "Order Count";
sourceDataField.ID = SourceDataFieldID;
PivotGridField summaryDisplayTypeDataField = pivotGrid.Fields.AddDataSourceColumn(SourceDataFieldName, PivotArea.DataArea);
summaryDisplayTypeDataField.SummaryType = sourceDataField.SummaryType;
summaryDisplayTypeDataField.ID = SummaryDisplayTypeDataFieldID;
}
break;
case SummaryDisplayTypeGroup.Percentage: {
pivotGrid.DataSourceID = "ProductReportsDataSource";
pivotGrid.Fields.Clear();
PivotGridField fieldYear = pivotGrid.Fields.AddDataSourceColumn("ShippedDate",PivotArea.ColumnArea, PivotGroupInterval.DateYear);
fieldYear.Caption = "Year";
PivotGridField fieldMonth = pivotGrid.Fields.AddDataSourceColumn("ShippedDate", PivotArea.ColumnArea, PivotGroupInterval.DateMonth);
fieldMonth.Caption = "Month";
PivotGridField categoryNameField = pivotGrid.Fields.AddDataSourceColumn("CategoryName", PivotArea.RowArea);
PivotGridField productNameField = pivotGrid.Fields.AddDataSourceColumn("ProductName", PivotArea.RowArea);
SourceDataFieldName = "ProductSales";
PivotGridField sourceDataField = pivotGrid.Fields.AddDataSourceColumn(SourceDataFieldName, PivotArea.DataArea);
sourceDataField.ID = SourceDataFieldID;
PivotGridField summaryDisplayTypeDataField = pivotGrid.Fields.AddDataSourceColumn(SourceDataFieldName, PivotArea.DataArea);
summaryDisplayTypeDataField.ID = SummaryDisplayTypeDataFieldID;
}
break;
case SummaryDisplayTypeGroup.Rank: {
pivotGrid.DataSourceID = "SalesPersonsDataSource";
pivotGrid.Fields.Clear();
PivotGridField fieldYear = pivotGrid.Fields.AddDataSourceColumn("OrderDate", PivotArea.ColumnArea, PivotGroupInterval.DateYear);
fieldYear.Caption = "Year";
PivotGridField fieldQuarter = pivotGrid.Fields.AddDataSourceColumn("OrderDate", PivotArea.ColumnArea, PivotGroupInterval.DateQuarter);
fieldQuarter.ValueFormat.FormatString = "Qtr {0}";
fieldQuarter.ValueFormat.FormatType = DevExpress.Utils.FormatType.Custom;
fieldQuarter.Caption = "Quarter";
PivotGridField countryField = pivotGrid.Fields.AddDataSourceColumn("Country", PivotArea.RowArea);
PivotGridField salesPersonField = pivotGrid.Fields.AddDataSourceColumn("Sales Person", PivotArea.RowArea);
SourceDataFieldName = "Extended Price";
PivotGridField sourceDataField = pivotGrid.Fields.AddDataSourceColumn(SourceDataFieldName, PivotArea.DataArea);
sourceDataField.Caption = "Sales";
sourceDataField.ID = SourceDataFieldID;
PivotGridField summaryDisplayTypeDataField = pivotGrid.Fields.AddDataSourceColumn(SourceDataFieldName, PivotArea.DataArea);
summaryDisplayTypeDataField.ID = SummaryDisplayTypeDataFieldID;
}
break;
}
pivotGrid.EndUpdate();
pivotGrid.DataBind();
}
void ConfigureSummaryDisplayTypeComboBox(SummaryDisplayTypeGroup typeGroup) {
List<PivotSummaryDisplayType> types = new List<PivotSummaryDisplayType>();
switch(typeGroup) {
case SummaryDisplayTypeGroup.Variation:
types.Add(PivotSummaryDisplayType.AbsoluteVariation);
types.Add(PivotSummaryDisplayType.PercentVariation);
break;
case SummaryDisplayTypeGroup.Percentage:
types.Add(PivotSummaryDisplayType.PercentOfColumn);
types.Add(PivotSummaryDisplayType.PercentOfRow);
types.Add(PivotSummaryDisplayType.PercentOfColumnGrandTotal);
types.Add(PivotSummaryDisplayType.PercentOfRowGrandTotal);
types.Add(PivotSummaryDisplayType.PercentOfGrandTotal);
break;
case SummaryDisplayTypeGroup.Rank:
types.Add(PivotSummaryDisplayType.RankInColumnLargestToSmallest);
types.Add(PivotSummaryDisplayType.RankInColumnSmallestToLargest);
types.Add(PivotSummaryDisplayType.RankInRowLargestToSmallest);
types.Add(PivotSummaryDisplayType.RankInRowSmallestToLargest);
break;
}
ddlSummaryDisplayType.Items.Clear();
foreach(PivotSummaryDisplayType type in types)
ddlSummaryDisplayType.Items.Add(Enum.GetName(typeof(PivotSummaryDisplayType), type), type);
ddlSummaryDisplayType.SelectedIndex = 0;
}
protected void cbShowRawValues_CheckedChanged(object sender, EventArgs e) {
if(SourceDataFieldName != null) {
SourceDataField.Visible = cbShowRawValues.Checked;
if(SourceDataField.Visible)
SourceDataField.AreaIndex = 0;
}
}
protected void cbAllowCrossGroupVariation_CheckedChanged(object sender, EventArgs e) {
pivotGrid.OptionsData.AllowCrossGroupVariation = cbAllowCrossGroupVariation.Checked;
}
protected void ddlSummaryDisplayType_SelectedIndexChanged(object sender, EventArgs e) {
SetSelectedSummaryDisplayType();
}
void SetSelectedSummaryDisplayType() {
if(SummaryDisplayTypeDataField == null)
return;
DataSourceColumnBinding sourceBinding = new DataSourceColumnBinding(SourceDataFieldName);
switch(ddlSummaryDisplayType.SelectedItem.Text) {
case "AbsoluteVariation":
SummaryDisplayTypeDataField.DataBinding = new DifferenceBinding(
sourceBinding,
CalculationPartitioningCriteria.RowValue,
CalculationDirection.DownThenAcross,
DifferenceTarget.Previous,
DifferenceType.Absolute);
SummaryDisplayTypeDataField.CellFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
SummaryDisplayTypeDataField.CellFormat.FormatString = "n0";
break;
case "PercentVariation":
SummaryDisplayTypeDataField.DataBinding = new DifferenceBinding(
sourceBinding,
CalculationPartitioningCriteria.RowValue,
CalculationDirection.DownThenAcross,
DifferenceTarget.Previous,
DifferenceType.Percentage);
SummaryDisplayTypeDataField.CellFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
SummaryDisplayTypeDataField.CellFormat.FormatString = "p2";
break;
case "PercentOfColumn":
SummaryDisplayTypeDataField.DataBinding = new PercentOfTotalBinding(
sourceBinding,
CalculationPartitioningCriteria.ColumnValueAndRowParentValue);
SummaryDisplayTypeDataField.CellFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
SummaryDisplayTypeDataField.CellFormat.FormatString = "p2";
break;
case "PercentOfRow":
SummaryDisplayTypeDataField.DataBinding = new PercentOfTotalBinding(
sourceBinding,
CalculationPartitioningCriteria.RowValueAndColumnParentValue);
SummaryDisplayTypeDataField.CellFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
SummaryDisplayTypeDataField.CellFormat.FormatString = "p2";
break;
case "PercentOfColumnGrandTotal":
SummaryDisplayTypeDataField.DataBinding = new PercentOfTotalBinding(
sourceBinding,
CalculationPartitioningCriteria.ColumnValue);
SummaryDisplayTypeDataField.CellFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
SummaryDisplayTypeDataField.CellFormat.FormatString = "p2";
break;
case "PercentOfRowGrandTotal":
SummaryDisplayTypeDataField.DataBinding = new PercentOfTotalBinding(
sourceBinding,
CalculationPartitioningCriteria.RowValue);
SummaryDisplayTypeDataField.CellFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
SummaryDisplayTypeDataField.CellFormat.FormatString = "p2";
break;
case "PercentOfGrandTotal":
SummaryDisplayTypeDataField.DataBinding = new PercentOfTotalBinding(
sourceBinding,
CalculationPartitioningCriteria.None);
SummaryDisplayTypeDataField.CellFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
SummaryDisplayTypeDataField.CellFormat.FormatString = "p2";
break;
case "RankInColumnLargestToSmallest":
SummaryDisplayTypeDataField.DataBinding = new RankBinding(
sourceBinding,
CalculationPartitioningCriteria.ColumnValue,
RankType.Dense, PivotSortOrder.Descending);
SummaryDisplayTypeDataField.CellFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
SummaryDisplayTypeDataField.CellFormat.FormatString = "n0";
break;
case "RankInColumnSmallestToLargest":
SummaryDisplayTypeDataField.DataBinding = new RankBinding(
sourceBinding,
CalculationPartitioningCriteria.ColumnValue,
RankType.Dense, PivotSortOrder.Ascending);
SummaryDisplayTypeDataField.CellFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
SummaryDisplayTypeDataField.CellFormat.FormatString = "n0";
break;
case "RankInRowLargestToSmallest":
SummaryDisplayTypeDataField.DataBinding = new RankBinding(
sourceBinding,
CalculationPartitioningCriteria.RowValue,
RankType.Dense, PivotSortOrder.Descending);
SummaryDisplayTypeDataField.CellFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
SummaryDisplayTypeDataField.CellFormat.FormatString = "n0";
break;
case "RankInRowSmallestToLargest":
SummaryDisplayTypeDataField.DataBinding = new RankBinding(
sourceBinding,
CalculationPartitioningCriteria.ColumnValue,
RankType.Dense, PivotSortOrder.Ascending);
SummaryDisplayTypeDataField.CellFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
SummaryDisplayTypeDataField.CellFormat.FormatString = "n0";
break;
}
SummaryDisplayTypeDataField.Caption = string.Format("{0}", ddlSummaryDisplayType.SelectedItem.Text);
}
}
}