-
Notifications
You must be signed in to change notification settings - Fork 2
/
PivotTableFormattingActions.cs
76 lines (64 loc) · 2.85 KB
/
PivotTableFormattingActions.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
using DevExpress.Spreadsheet;
namespace SpreadsheetDocServerPivotAPI
{
public static class PivotTableFormattingActions
{
static void ChangeStylePivotTable(IWorkbook workbook)
{
#region #SetStyle
Worksheet worksheet = workbook.Worksheets["Report1"];
workbook.Worksheets.ActiveWorksheet = worksheet;
// Access the pivot table by its name in the collection.
PivotTable pivotTable = worksheet.PivotTables["PivotTable1"];
// Set the pivot table style.
pivotTable.Style = workbook.TableStyles[BuiltInPivotStyleId.PivotStyleDark7];
#endregion #SetStyle
}
static void BandedColumns(IWorkbook workbook)
{
#region #BandedColumns
Worksheet worksheet = workbook.Worksheets["Report4"];
workbook.Worksheets.ActiveWorksheet = worksheet;
// Access the pivot table by its name in the collection.
PivotTable pivotTable = worksheet.PivotTables["PivotTable1"];
// Apply the banded column formatting to the pivot table.
pivotTable.BandedColumns = true;
#endregion #BandedColumns
}
static void BandedRows(IWorkbook workbook)
{
#region #BandedRows
Worksheet worksheet = workbook.Worksheets["Report4"];
workbook.Worksheets.ActiveWorksheet = worksheet;
// Access the pivot table by its name in the collection.
PivotTable pivotTable = worksheet.PivotTables["PivotTable1"];
// Apply the banded row formatting to the pivot table.
pivotTable.BandedRows = true;
#endregion #BandedRows
}
static void ShowColumnHeaders(IWorkbook workbook)
{
#region #ColumnHeaders
Worksheet worksheet = workbook.Worksheets["Report1"];
workbook.Worksheets.ActiveWorksheet = worksheet;
// Access the pivot table by its name in the collection.
PivotTable pivotTable = worksheet.PivotTables["PivotTable1"];
// Remove formatting from column headers.
pivotTable.ShowColumnHeaders = false;
#endregion #ColumnHeaders
}
static void ShowRowHeaders(IWorkbook workbook)
{
#region #RowHeaders
Worksheet worksheet = workbook.Worksheets["Report1"];
workbook.Worksheets.ActiveWorksheet = worksheet;
// Access the pivot table by its name in the collection.
PivotTable pivotTable = worksheet.PivotTables["PivotTable1"];
// Add the "Region" field to the column axis area.
pivotTable.ColumnFields.Add(pivotTable.Fields["Region"]);
// Remove formatting from row headers.
pivotTable.ShowRowHeaders = false;
#endregion #RowHeaders
}
}
}