-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathSeriesActions.cs
More file actions
108 lines (87 loc) · 4.09 KB
/
SeriesActions.cs
File metadata and controls
108 lines (87 loc) · 4.09 KB
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
using DevExpress.Spreadsheet;
using DevExpress.Spreadsheet.Charts;
using System;
namespace SpreadsheetChartAPIActions
{
public static class SeriesActions
{
public static Action<Workbook> RemoveSeriesAction = RemoveSeries;
public static Action<Workbook> ChangeSeriesOrderAction = ChangeSeriesOrder;
public static Action<Workbook> UseSecondaryAxesAction = UseSecondaryAxes;
public static Action<Workbook> ChangeSeriesTypeAction = ChangeSeriesType;
public static Action<Workbook> ChangeSeriesArgumentsAction = ChangeSeriesArguments;
static void RemoveSeries(Workbook workbook)
{
#region #RemoveSeries
Worksheet worksheet = workbook.Worksheets["chartTask3"];
workbook.Worksheets.ActiveWorksheet = worksheet;
// Create a chart and specify its location.
Chart chart = worksheet.Charts.Add(ChartType.ColumnClustered, worksheet["B2:E6"]);
chart.TopLeftCell = worksheet.Cells["H2"];
chart.BottomRightCell = worksheet.Cells["N14"];
// Remove the series.
chart.Series.RemoveAt(1);
#endregion #RemoveSeries
}
static void ChangeSeriesOrder(Workbook workbook)
{
#region #ChangeSeriesOrder
Worksheet worksheet = workbook.Worksheets["chartTask3"];
workbook.Worksheets.ActiveWorksheet = worksheet;
// Create a chart and specify its location.
Chart chart = worksheet.Charts.Add(ChartType.ColumnClustered, worksheet["B2:D6"]);
chart.TopLeftCell = worksheet.Cells["H2"];
chart.BottomRightCell = worksheet.Cells["N14"];
// Change the series order.
chart.Series[1].BringForward();
#endregion #ChangeSeriesOrder
}
static void UseSecondaryAxes(Workbook workbook)
{
#region #UseSecondaryAxes
Worksheet worksheet = workbook.Worksheets["chartTask5"];
workbook.Worksheets.ActiveWorksheet = worksheet;
// Create a chart and specify its location.
Chart chart = worksheet.Charts.Add(ChartType.LineMarker, worksheet["B2:D8"]);
chart.TopLeftCell = worksheet.Cells["F2"];
chart.BottomRightCell = worksheet.Cells["L15"];
// Use the secondary axis.
chart.Series[1].AxisGroup = AxisGroup.Secondary;
// Specify the position of the legend.
chart.Legend.Position = LegendPosition.Top;
#endregion #UseSecondaryAxes
}
static void ChangeSeriesType(Workbook workbook)
{
#region #ChangeSeriesType
Worksheet worksheet = workbook.Worksheets["chartTask5"];
workbook.Worksheets.ActiveWorksheet = worksheet;
// Create a chart and specify its location.
Chart chart = worksheet.Charts.Add(ChartType.LineMarker, worksheet["B2:D8"]);
chart.TopLeftCell = worksheet.Cells["F2"];
chart.BottomRightCell = worksheet.Cells["L15"];
// Change the type of the second series.
chart.Series[1].ChangeType(ChartType.ColumnClustered);
// Use the secondary axis.
chart.Series[1].AxisGroup = AxisGroup.Secondary;
// Specify the position of the legend.
chart.Legend.Position = LegendPosition.Top;
#endregion #ChangeSeriesType
}
static void ChangeSeriesArguments(Workbook workbook)
{
#region #ChangeSeriesArgumentsAndValues
Worksheet worksheet = workbook.Worksheets["Sheet1"];
workbook.Worksheets.ActiveWorksheet = worksheet;
workbook.BeginUpdate();
// Create a chart.
Chart chart = worksheet.Charts.Add(ChartType.LineMarker, worksheet[0, 0]);
// Specify arguments.
chart.Series[0].Arguments = new CellValue[] { 1, 2, 3 };
// Specify values.
chart.Series[0].Values = new CellValue[] { 30, 20, 10 };
workbook.EndUpdate();
#endregion #ChangeSeriesArgumentsAndValues
}
}
}