Free cookie consent management tool by TermsFeed Policy Generator

source: branches/ExportSymbolicDataAnalysisSolutions/HeuristicLab.ExtLibs/HeuristicLab.EPPlus/3.1.3/EPPlus-3.1.3/Table/PivotTable/ExcelPivotTableFieldGroup.cs @ 9580

Last change on this file since 9580 was 9580, checked in by sforsten, 11 years ago

#1730:

  • added SymbolicDataAnalysisExpressionExcelFormatter
  • changed modifiers in SymbolicExpressionTreeChart of methods SaveImageAsBitmap and SaveImageAsEmf to public
  • added menu item ExportSymbolicSolutionToExcelMenuItem to export a symbolic solution to an excel file
  • added EPPlus-3.1.3 to ExtLibs
File size: 5.2 KB
Line 
1/*******************************************************************************
2 * You may amend and distribute as you like, but don't remove this header!
3 *
4 * EPPlus provides server-side generation of Excel 2007/2010 spreadsheets.
5 * See http://www.codeplex.com/EPPlus for details.
6 *
7 * Copyright (C) 2011  Jan Källman
8 *
9 * This library is free software; you can redistribute it and/or
10 * modify it under the terms of the GNU Lesser General Public
11 * License as published by the Free Software Foundation; either
12 * version 2.1 of the License, or (at your option) any later version.
13
14 * This library is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. 
17 * See the GNU Lesser General Public License for more details.
18 *
19 * The GNU Lesser General Public License can be viewed at http://www.opensource.org/licenses/lgpl-license.php
20 * If you unfamiliar with this license or have questions about it, here is an http://www.gnu.org/licenses/gpl-faq.html
21 *
22 * All code and executables are provided "as is" with no warranty either express or implied.
23 * The author accepts no liability for any damage or loss of business that this product may cause.
24 *
25 * Code change notes:
26 *
27 * Author             Change            Date
28 * ******************************************************************************
29 * Jan Källman    Added   21-MAR-2011
30 * Jan Källman    License changed GPL-->LGPL 2011-12-16
31 *******************************************************************************/
32using System;
33using System.Collections.Generic;
34using System.Linq;
35using System.Text;
36using System.Xml;
37using System.Globalization;
38
39namespace OfficeOpenXml.Table.PivotTable
40{
41    /// <summary>
42    /// Base class for pivot table field groups
43    /// </summary>
44    public class ExcelPivotTableFieldGroup : XmlHelper
45    {
46        internal ExcelPivotTableFieldGroup(XmlNamespaceManager ns, XmlNode topNode) :
47            base(ns, topNode)
48        {
49           
50        }
51    }
52    /// <summary>
53    /// A date group
54    /// </summary>
55    public class ExcelPivotTableFieldDateGroup : ExcelPivotTableFieldGroup
56    {
57        internal ExcelPivotTableFieldDateGroup(XmlNamespaceManager ns, XmlNode topNode) :
58            base(ns, topNode)
59        {
60        }
61        const string groupByPath = "d:fieldGroup/d:rangePr/@groupBy";
62        /// <summary>
63        /// How to group the date field
64        /// </summary>
65        public eDateGroupBy GroupBy
66        {
67            get
68            {
69                string v = GetXmlNodeString(groupByPath);
70                if (v != "")
71                {
72                    return (eDateGroupBy)Enum.Parse(typeof(eDateGroupBy), v, true);
73                }
74                else
75                {
76                    throw (new Exception("Invalid date Groupby"));
77                }
78            }
79            private set
80            {
81                SetXmlNodeString(groupByPath, value.ToString().ToLower());
82            }
83        }
84        /// <summary>
85        /// Auto detect start date
86        /// </summary>
87        public bool AutoStart
88        {
89            get
90            {
91                return GetXmlNodeBool("@autoStart", false);
92            }
93        }
94        /// <summary>
95        /// Auto detect end date
96        /// </summary>
97        public bool AutoEnd
98        {
99            get
100            {
101                return GetXmlNodeBool("@autoStart", false);
102            }
103        }
104    }
105    /// <summary>
106    /// A pivot table field numeric grouping
107    /// </summary>
108    public class ExcelPivotTableFieldNumericGroup : ExcelPivotTableFieldGroup
109    {
110        internal ExcelPivotTableFieldNumericGroup(XmlNamespaceManager ns, XmlNode topNode) :
111            base(ns, topNode)
112        {
113        }
114        const string startPath = "d:fieldGroup/d:rangePr/@startNum";
115        /// <summary>
116        /// Start value
117        /// </summary>
118        public double Start
119        {
120            get
121            {
122                return (double)GetXmlNodeDoubleNull(startPath);
123            }
124            private set
125            {
126                SetXmlNodeString(startPath,value.ToString(CultureInfo.InvariantCulture));
127            }
128        }
129        const string endPath = "d:fieldGroup/d:rangePr/@endNum";
130        /// <summary>
131        /// End value
132        /// </summary>
133        public double End
134        {
135            get
136            {
137                return (double)GetXmlNodeDoubleNull(endPath);
138            }
139            private set
140            {
141                SetXmlNodeString(endPath, value.ToString(CultureInfo.InvariantCulture));
142            }
143        }
144        const string groupIntervalPath = "d:fieldGroup/d:rangePr/@groupInterval";
145        /// <summary>
146        /// Interval
147        /// </summary>
148        public double Interval
149        {
150            get
151            {
152                return (double)GetXmlNodeDoubleNull(groupIntervalPath);
153            }
154            private set
155            {
156                SetXmlNodeString(groupIntervalPath, value.ToString(CultureInfo.InvariantCulture));
157            }
158        }
159    }
160}
Note: See TracBrowser for help on using the repository browser.