Merge pull request #961 from ermshiperete/bug-xamarin-18118
[mono.git] / mcs / class / System.Windows.Forms.DataVisualization / System.Windows.Forms.DataVisualization.Charting / DataPointCollection.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
29 namespace System.Windows.Forms.DataVisualization.Charting
30 {
31         public class DataPointCollection : ChartElementCollection<DataPoint>
32         {
33                 [MonoTODO]
34                 public DataPoint Add (params double[] y)
35                 {
36                         throw new NotImplementedException ();
37                 }
38
39                 [MonoTODO]
40                 public int AddXY (double xValue, double yValue)
41                 {
42                         throw new NotImplementedException ();
43                 }
44
45                 [MonoTODO]
46                 public int AddXY (Object xValue, params Object[] yValue)
47                 {
48                         throw new NotImplementedException ();
49                 }
50
51                 [MonoTODO]
52                 public int AddY (double yValue)
53                 {
54                         throw new NotImplementedException ();
55                 }
56
57                 [MonoTODO]
58                 public int AddY (params Object[] yValue)
59                 {
60                         throw new NotImplementedException ();
61                 }
62
63                 [MonoTODO]
64                 protected override void ClearItems ()
65                 {
66                         throw new NotImplementedException ();
67                 }
68
69                 [MonoTODO]
70                 public void DataBind (System.Collections.IEnumerable dataSource, string xField, string yFields, string otherFields)
71                 {
72                         throw new NotImplementedException ();
73                 }
74
75                 [MonoTODO]
76                 public void DataBindXY (System.Collections.IEnumerable xValue, params System.Collections.IEnumerable[] yValues)
77                 {
78                         throw new NotImplementedException ();
79                 }
80
81                 [MonoTODO]
82                 public void DataBindXY (System.Collections.IEnumerable xValue, string xField, System.Collections.IEnumerable yValue, string yFields)
83                 {
84                         throw new NotImplementedException ();
85                 }
86
87                 [MonoTODO]
88                 public void DataBindY (params System.Collections.IEnumerable[] yValue)
89                 {
90                         throw new NotImplementedException ();
91                 }
92
93                 [MonoTODO]
94                 public void DataBindY (System.Collections.IEnumerable yValue, string yFields)
95                 {
96                         throw new NotImplementedException ();
97                 }
98
99                 [MonoTODO]
100                 public System.Collections.Generic.IEnumerable<DataPoint> FindAllByValue (double valueToFind)
101                 {
102                         throw new NotImplementedException ();
103                 }
104
105                 [MonoTODO]
106                 public System.Collections.Generic.IEnumerable<DataPoint> FindAllByValue (double valueToFind, string useValue)
107                 {
108                         throw new NotImplementedException ();
109                 }
110
111                 [MonoTODO]
112                 public System.Collections.Generic.IEnumerable<DataPoint> FindAllByValue (double valueToFind, string useValue, int startIndex)
113                 {
114                         throw new NotImplementedException ();
115                 }
116
117                 [MonoTODO]
118                 public DataPoint FindByValue (double valueToFind)
119                 {
120                         throw new NotImplementedException ();
121                 }
122
123                 [MonoTODO]
124                 public DataPoint FindByValue (double valueToFind, string useValue)
125                 {
126                         return FindByValue( valueToFind, useValue, 0);
127                 }
128
129                 [MonoTODO]
130                 public DataPoint FindByValue (double valueToFind, string useValue, int startIndex)
131                 {
132                         throw new NotImplementedException ();
133                 }
134
135                 [MonoTODO]
136                 public DataPoint FindMaxByValue () 
137                 {
138                         throw new NotImplementedException ();
139                 }
140
141                 [MonoTODO]
142                 public DataPoint FindMaxByValue (string useValue)
143                 {
144                         return FindMaxByValue (useValue, 0);
145                 }
146
147                 [MonoTODO]
148                 public DataPoint FindMaxByValue (string useValue, int startIndex)
149                 {
150                         throw new NotImplementedException ();
151                 }
152
153                 [MonoTODO]
154                 public DataPoint FindMinByValue ()
155                 {
156                         throw new NotImplementedException ();
157                 }
158
159                 [MonoTODO]
160                 public DataPoint FindMinByValue (string useValue)
161                 {
162                         return FindMinByValue (useValue, 0);
163                 }
164
165                 [MonoTODO]
166                 public DataPoint FindMinByValue (string useValue, int startIndex)
167                 {
168                         throw new NotImplementedException ();
169                 }
170
171                 [MonoTODO]
172                 public void InsertXY (int index, Object xValue, params Object[] yValue)
173                 {
174                         throw new NotImplementedException ();
175                 }
176
177                 [MonoTODO]
178                 public void InsertY (int index, params Object[] yValue)
179                 {
180                         throw new NotImplementedException ();
181                 }
182         }
183 }