Merge pull request #4540 from kumpera/android-changes-part1
[mono.git] / mcs / class / System.Windows.Forms.DataVisualization / System.Windows.Forms.DataVisualization.Charting / DataPointCustomProperties.cs
1 //
2 // Authors:
3 // Jonathan Pobst (monkey@jpobst.com)
4 // Francis Fisher (frankie@terrorise.me.uk)
5 //
6 // Copyright (C) 2009 Novell, Inc (http://www.novell.com) 
7 //
8 // Permission is hereby granted, free of charge, to any person obtaining
9 // a copy of this software and associated documentation files (the
10 // "Software"), to deal in the Software without restriction, including
11 // without limitation the rights to use, copy, modify, merge, publish,
12 // distribute, sublicense, and/or sell copies of the Software, and to
13 // permit persons to whom the Software is furnished to do so, subject to
14 // the following conditions:
15 // 
16 // The above copyright notice and this permission notice shall be
17 // included in all copies or substantial portions of the Software.
18 // 
19 // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
20 // EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
21 // MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
22 // NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
23 // LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
24 // OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
25 // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
26
27 using System;
28 using System.Drawing;
29
30 namespace System.Windows.Forms.DataVisualization.Charting
31 {
32         public class DataPointCustomProperties : ChartNamedElement
33         {
34                 public virtual string AxisLabel { get; set; }
35                 public GradientStyle BackGradientStyle { get; set; }
36                 public ChartHatchStyle BackHatchStyle { get; set; }
37                 public string BackImage { get; set; }
38                 public ChartImageAlignmentStyle BackImageAlignment { get; set; }
39                 public Color BackImageTransparentColor { get; set; }
40                 public ChartImageWrapMode BackImageWrapMode { get; set; }
41                 public Color BackSecondaryColor { get; set; }
42                 public Color BorderColor { get; set; }
43                 public ChartDashStyle BorderDashStyle { get; set; }
44                 public int BorderWidth { get; set; }
45                 public Color Color { get; set; }
46                 public string CustomProperties { get; set; }
47                 public CustomProperties CustomPropertiesExtended { get; set; }
48                 public Font Font { get; set; }
49                 public bool IsValueShownAsLabel { get; set; }
50                 public bool IsVisibleInLegend { get; set; }
51                 
52                 [MonoTODO]
53                 public string this[int idx] {
54                         get { 
55                                 throw new NotImplementedException ();
56                         }
57                         set {
58                                 throw new NotImplementedException ();
59                         }
60                 }
61                 [MonoTODO]
62                 public string this[string name] {
63                         get { 
64                                 throw new NotImplementedException ();
65                         }
66                         set {
67                                 throw new NotImplementedException ();
68                         }
69                 }
70
71                 public virtual string Label { get; set; }
72                 public int LabelAngle { get; set; }
73                 public Color LabelBackColor { get; set; }
74                 public Color LabelBorderColor { get; set; }
75                 public ChartDashStyle LabelBorderDashStyle { get; set; }
76                 public int LabelBorderWidth { get; set; }
77                 public Color LabelForeColor { get; set; }
78                 public string LabelFormat { get; set; }
79                 public string LabelToolTip { get; set; }
80                 public string LegendText { get; set; }
81                 public string LegendToolTip { get; set; }
82                 public Color MarkerBorderColor { get; set; }
83                 public int MarkerBorderWidth { get; set; }
84                 public Color MarkerColor { get; set; }
85                 public string MarkerImage { get; set; }
86                 public Color MarkerImageTransparentColor { get; set; }
87                 public int MarkerSize { get; set; }
88                 public MarkerStyle MarkerStyle { get; set; }
89                 public string ToolTip { get; set; }
90
91                 #region Public methods
92                 [MonoTODO]
93                 public virtual void DeleteCustomProperty (string name)
94                 {
95                         throw new NotImplementedException ();
96                 }
97                 [MonoTODO]
98                 public virtual string GetCustomProperty(string name)
99                 {
100                         throw new NotImplementedException ();
101                 }
102                 [MonoTODO]
103                 public virtual bool IsCustomPropertySet(string name)
104                 {
105                         throw new NotImplementedException ();
106                 }
107                 [MonoTODO]
108                 public void ResetIsValueShownAsLabel ()
109                 {
110                         throw new NotImplementedException ();
111                 }
112                 [MonoTODO]
113                 public void ResetIsVisibleInLegend ()
114                 {
115                         throw new NotImplementedException ();
116                 }
117                 [MonoTODO]
118                 public virtual void SetCustomProperty (string name,string propertyValue)
119                 {
120                         throw new NotImplementedException ();
121                 }
122                 [MonoTODO]
123                 public virtual void SetDefault (bool clearAll)
124                 {
125                         throw new NotImplementedException ();
126                 }
127
128                 #endregion
129         }
130 }