DataPointCollection.cs 4.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183
  1. //
  2. // Authors:
  3. // Jonathan Pobst ([email protected])
  4. // Francis Fisher ([email protected])
  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. using System;
  27. namespace System.Windows.Forms.DataVisualization.Charting
  28. {
  29. public class DataPointCollection : ChartElementCollection<DataPoint>
  30. {
  31. [MonoTODO]
  32. public DataPoint Add (params double[] y)
  33. {
  34. throw new NotImplementedException ();
  35. }
  36. [MonoTODO]
  37. public int AddXY (double xValue, double yValue)
  38. {
  39. throw new NotImplementedException ();
  40. }
  41. [MonoTODO]
  42. public int AddXY (Object xValue, params Object[] yValue)
  43. {
  44. throw new NotImplementedException ();
  45. }
  46. [MonoTODO]
  47. public int AddY (double yValue)
  48. {
  49. throw new NotImplementedException ();
  50. }
  51. [MonoTODO]
  52. public int AddY (params Object[] yValue)
  53. {
  54. throw new NotImplementedException ();
  55. }
  56. [MonoTODO]
  57. protected override void ClearItems ()
  58. {
  59. throw new NotImplementedException ();
  60. }
  61. [MonoTODO]
  62. public void DataBind (System.Collections.IEnumerable dataSource, string xField, string yFields, string otherFields)
  63. {
  64. throw new NotImplementedException ();
  65. }
  66. [MonoTODO]
  67. public void DataBindXY (System.Collections.IEnumerable xValue, params System.Collections.IEnumerable[] yValues)
  68. {
  69. throw new NotImplementedException ();
  70. }
  71. [MonoTODO]
  72. public void DataBindXY (System.Collections.IEnumerable xValue, string xField, System.Collections.IEnumerable yValue, string yFields)
  73. {
  74. throw new NotImplementedException ();
  75. }
  76. [MonoTODO]
  77. public void DataBindY (params System.Collections.IEnumerable[] yValue)
  78. {
  79. throw new NotImplementedException ();
  80. }
  81. [MonoTODO]
  82. public void DataBindY (System.Collections.IEnumerable yValue, string yFields)
  83. {
  84. throw new NotImplementedException ();
  85. }
  86. [MonoTODO]
  87. public System.Collections.Generic.IEnumerable<DataPoint> FindAllByValue (double valueToFind)
  88. {
  89. throw new NotImplementedException ();
  90. }
  91. [MonoTODO]
  92. public System.Collections.Generic.IEnumerable<DataPoint> FindAllByValue (double valueToFind, string useValue)
  93. {
  94. throw new NotImplementedException ();
  95. }
  96. [MonoTODO]
  97. public System.Collections.Generic.IEnumerable<DataPoint> FindAllByValue (double valueToFind, string useValue, int startIndex)
  98. {
  99. throw new NotImplementedException ();
  100. }
  101. [MonoTODO]
  102. public DataPoint FindByValue (double valueToFind)
  103. {
  104. throw new NotImplementedException ();
  105. }
  106. [MonoTODO]
  107. public DataPoint FindByValue (double valueToFind, string useValue)
  108. {
  109. return FindByValue( valueToFind, useValue, 0);
  110. }
  111. [MonoTODO]
  112. public DataPoint FindByValue (double valueToFind, string useValue, int startIndex)
  113. {
  114. throw new NotImplementedException ();
  115. }
  116. [MonoTODO]
  117. public DataPoint FindMaxByValue ()
  118. {
  119. throw new NotImplementedException ();
  120. }
  121. [MonoTODO]
  122. public DataPoint FindMaxByValue (string useValue)
  123. {
  124. return FindMaxByValue (useValue, 0);
  125. }
  126. [MonoTODO]
  127. public DataPoint FindMaxByValue (string useValue, int startIndex)
  128. {
  129. throw new NotImplementedException ();
  130. }
  131. [MonoTODO]
  132. public DataPoint FindMinByValue ()
  133. {
  134. throw new NotImplementedException ();
  135. }
  136. [MonoTODO]
  137. public DataPoint FindMinByValue (string useValue)
  138. {
  139. return FindMinByValue (useValue, 0);
  140. }
  141. [MonoTODO]
  142. public DataPoint FindMinByValue (string useValue, int startIndex)
  143. {
  144. throw new NotImplementedException ();
  145. }
  146. [MonoTODO]
  147. public void InsertXY (int index, Object xValue, params Object[] yValue)
  148. {
  149. throw new NotImplementedException ();
  150. }
  151. [MonoTODO]
  152. public void InsertY (int index, params Object[] yValue)
  153. {
  154. throw new NotImplementedException ();
  155. }
  156. }
  157. }