Merge pull request #961 from ermshiperete/bug-xamarin-18118
[mono.git] / mcs / class / System.Windows.Forms.DataVisualization / System.Windows.Forms.DataVisualization.Charting / ChartHatchStyle.cs
1 //
2 // Authors:
3 // Jonathan Pobst (monkey@jpobst.com)
4 //
5 // Copyright (C) 2009 Novell, Inc (http://www.novell.com) 
6 //
7 // Permission is hereby granted, free of charge, to any person obtaining
8 // a copy of this software and associated documentation files (the
9 // "Software"), to deal in the Software without restriction, including
10 // without limitation the rights to use, copy, modify, merge, publish,
11 // distribute, sublicense, and/or sell copies of the Software, and to
12 // permit persons to whom the Software is furnished to do so, subject to
13 // the following conditions:
14 // 
15 // The above copyright notice and this permission notice shall be
16 // included in all copies or substantial portions of the Software.
17 // 
18 // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
19 // EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
20 // MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
21 // NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
22 // LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
23 // OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
24 // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
25
26 using System;
27
28 namespace System.Windows.Forms.DataVisualization.Charting
29 {
30         public enum ChartHatchStyle
31         {
32                 None = 0,
33                 BackwardDiagonal = 1,
34                 Cross = 2,
35                 DarkDownwardDiagonal = 3,
36                 DarkHorizontal = 4,
37                 DarkUpwardDiagonal = 5,
38                 DarkVertical = 6,
39                 DashedDownwardDiagonal = 7,
40                 DashedHorizontal = 8,
41                 DashedUpwardDiagonal = 9,
42                 DashedVertical = 10,
43                 DiagonalBrick = 11,
44                 DiagonalCross = 12,
45                 Divot = 13,
46                 DottedDiamond = 14,
47                 DottedGrid = 15,
48                 ForwardDiagonal = 16,
49                 Horizontal = 17,
50                 HorizontalBrick = 18,
51                 LargeCheckerBoard = 19,
52                 LargeConfetti = 20,
53                 LargeGrid = 21,
54                 LightDownwardDiagonal = 22,
55                 LightHorizontal = 23,
56                 LightUpwardDiagonal = 24,
57                 LightVertical = 25,
58                 NarrowHorizontal = 26,
59                 NarrowVertical = 27,
60                 OutlinedDiamond = 28,
61                 Percent05 = 29,
62                 Percent10 = 30,
63                 Percent20 = 31,
64                 Percent25 = 32,
65                 Percent30 = 33,
66                 Percent40 = 34,
67                 Percent50 = 35,
68                 Percent60 = 36,
69                 Percent70 = 37,
70                 Percent75 = 38,
71                 Percent80 = 39,
72                 Percent90 = 40,
73                 Plaid = 41,
74                 Shingle = 42,
75                 SmallCheckerBoard = 43,
76                 SmallConfetti = 44,
77                 SmallGrid = 45,
78                 SolidDiamond = 46,
79                 Sphere = 47,
80                 Trellis = 48,
81                 Vertical = 49,
82                 Wave = 50,
83                 Weave = 51,
84                 WideDownwardDiagonal = 52,
85                 WideUpwardDiagonal = 53,
86                 ZigZag = 54
87         }
88 }