DataManipulator.cs 9.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329
  1. // Authors:
  2. // Francis Fisher ([email protected])
  3. //
  4. // (C) Francis Fisher 2013
  5. //
  6. // Permission is hereby granted, free of charge, to any person obtaining
  7. // a copy of this software and associated documentation files (the
  8. // "Software"), to deal in the Software without restriction, including
  9. // without limitation the rights to use, copy, modify, merge, publish,
  10. // distribute, sublicense, and/or sell copies of the Software, and to
  11. // permit persons to whom the Software is furnished to do so, subject to
  12. // the following conditions:
  13. //
  14. // The above copyright notice and this permission notice shall be
  15. // included in all copies or substantial portions of the Software.
  16. //
  17. // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
  18. // EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
  19. // MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
  20. // NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
  21. // LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
  22. // OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
  23. // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
  24. using System.Data;
  25. using System.Collections.Generic;
  26. namespace System.Windows.Forms.DataVisualization.Charting
  27. {
  28. public class DataManipulator : DataFormula
  29. {
  30. public bool FilterMatchedPoints { get; set; }
  31. public bool FilterSetEmptyPoints { get; set; }
  32. [MonoTODO]
  33. public DataSet ExportSeriesValues ()
  34. {
  35. throw new NotImplementedException ();
  36. }
  37. [MonoTODO]
  38. public DataSet ExportSeriesValues (Series series)
  39. {
  40. throw new NotImplementedException ();
  41. }
  42. [MonoTODO]
  43. public DataSet ExportSeriesValues (string seriesNames)
  44. {
  45. throw new NotImplementedException ();
  46. }
  47. [MonoTODO]
  48. public void Filter (IDataPointFilter filterInterface, string inputSeriesNames)
  49. {
  50. throw new NotImplementedException ();
  51. }
  52. [MonoTODO]
  53. public void Filter (IDataPointFilter filterInterface, Series inputSeries)
  54. {
  55. throw new NotImplementedException ();
  56. }
  57. [MonoTODO]
  58. public void Filter (CompareMethod compareMethod, double compareValue, string inputSeriesNames)
  59. {
  60. throw new NotImplementedException ();
  61. }
  62. [MonoTODO]
  63. public void Filter (CompareMethod compareMethod, double compareValue, Series inputSeries)
  64. {
  65. throw new NotImplementedException ();
  66. }
  67. [MonoTODO]
  68. public void Filter (DateRangeType dateRange, string rangeElements, string inputSeriesNames)
  69. {
  70. throw new NotImplementedException ();
  71. }
  72. [MonoTODO]
  73. public void Filter (DateRangeType dateRange, string rangeElements, Series inputSeries)
  74. {
  75. throw new NotImplementedException ();
  76. }
  77. [MonoTODO]
  78. public void Filter (IDataPointFilter filterInterface, string inputSeriesNames, string outputSeriesNames)
  79. {
  80. throw new NotImplementedException ();
  81. }
  82. [MonoTODO]
  83. public void Filter (IDataPointFilter filterInterface, Series inputSeries, Series outputSeries)
  84. {
  85. throw new NotImplementedException ();
  86. }
  87. [MonoTODO]
  88. public void Filter (CompareMethod compareMethod, double compareValue, string inputSeriesNames, string outputSeriesNames)
  89. {
  90. throw new NotImplementedException ();
  91. }
  92. [MonoTODO]
  93. public void Filter (CompareMethod compareMethod, double compareValue, Series inputSeries, Series outputSeries)
  94. {
  95. throw new NotImplementedException ();
  96. }
  97. [MonoTODO]
  98. public void Filter (DateRangeType dateRange, string rangeElements, string inputSeriesNames, string outputSeriesNames)
  99. {
  100. throw new NotImplementedException ();
  101. }
  102. [MonoTODO]
  103. public void Filter (DateRangeType dateRange, string rangeElements, Series inputSeries, Series outputSeries)
  104. {
  105. throw new NotImplementedException ();
  106. }
  107. [MonoTODO]
  108. public void Filter (CompareMethod compareMethod, double compareValue, string inputSeriesNames, string outputSeriesNames, string usingValue)
  109. {
  110. throw new NotImplementedException ();
  111. }
  112. [MonoTODO]
  113. public void Filter (CompareMethod compareMethod, double compareValue, Series inputSeries, Series outputSeries, string usingValue)
  114. {
  115. throw new NotImplementedException ();
  116. }
  117. [MonoTODO]
  118. public void FilterTopN (int pointCount, string inputSeriesNames)
  119. {
  120. throw new NotImplementedException ();
  121. }
  122. [MonoTODO]
  123. public void FilterTopN (int pointCount, Series inputSeries)
  124. {
  125. throw new NotImplementedException ();
  126. }
  127. [MonoTODO]
  128. public void FilterTopN (int pointCount, string inputSeriesNames, string outputSeriesNames)
  129. {
  130. throw new NotImplementedException ();
  131. }
  132. [MonoTODO]
  133. public void FilterTopN (int pointCount, Series inputSeries, Series outputSeries)
  134. {
  135. throw new NotImplementedException ();
  136. }
  137. [MonoTODO]
  138. public void FilterTopN (int pointCount, string inputSeriesNames, string outputSeriesNames, string usingValue)
  139. {
  140. throw new NotImplementedException ();
  141. }
  142. [MonoTODO]
  143. public void FilterTopN (int pointCount, Series inputSeries, Series outputSeries, string usingValue)
  144. {
  145. throw new NotImplementedException ();
  146. }
  147. [MonoTODO]
  148. public void FilterTopN (int pointCount, string inputSeriesNames, string outputSeriesNames, string usingValue, bool getTopValues)
  149. {
  150. throw new NotImplementedException ();
  151. }
  152. [MonoTODO]
  153. public void FilterTopN (int pointCount, Series inputSeries, Series outputSeries, string usingValue, bool getTopValues)
  154. {
  155. throw new NotImplementedException ();
  156. }
  157. [MonoTODO]
  158. public void Group (string formula, double interval, IntervalType intervalType, string inputSeriesName)
  159. {
  160. throw new NotImplementedException ();
  161. }
  162. [MonoTODO]
  163. public void Group (string formula, double interval, IntervalType intervalType, Series inputSeries)
  164. {
  165. throw new NotImplementedException ();
  166. }
  167. [MonoTODO]
  168. public void Group (string formula, double interval, IntervalType intervalType, string inputSeriesName, string outputSeriesName)
  169. {
  170. throw new NotImplementedException ();
  171. }
  172. [MonoTODO]
  173. public void Group (string formula, double interval, IntervalType intervalType, Series inputSeries, Series outputSeries)
  174. {
  175. throw new NotImplementedException ();
  176. }
  177. [MonoTODO]
  178. public void Group (string formula, double interval, IntervalType intervalType, double intervalOffset, IntervalType intervalOffsetType, string inputSeriesName)
  179. {
  180. throw new NotImplementedException ();
  181. }
  182. [MonoTODO]
  183. public void Group (string formula, double interval, IntervalType intervalType, double intervalOffset, IntervalType intervalOffsetType, Series inputSeries)
  184. {
  185. throw new NotImplementedException ();
  186. }
  187. [MonoTODO]
  188. public void Group (string formula, double interval, IntervalType intervalType, double intervalOffset, IntervalType intervalOffsetType, string inputSeriesName, string outputSeriesName)
  189. {
  190. throw new NotImplementedException ();
  191. }
  192. [MonoTODO]
  193. public void Group (string formula, double interval, IntervalType intervalType, double intervalOffset, IntervalType intervalOffsetType, Series inputSeries, Series outputSeries)
  194. {
  195. throw new NotImplementedException ();
  196. }
  197. [MonoTODO]
  198. public void GroupByAxisLabel (string formula, string inputSeriesName)
  199. {
  200. throw new NotImplementedException ();
  201. }
  202. [MonoTODO]
  203. public void GroupByAxisLabel (string formula, Series inputSeries)
  204. {
  205. throw new NotImplementedException ();
  206. }
  207. [MonoTODO]
  208. public void GroupByAxisLabel (string formula, string inputSeriesName, string outputSeriesName)
  209. {
  210. throw new NotImplementedException ();
  211. }
  212. [MonoTODO]
  213. public void GroupByAxisLabel (string formula, Series inputSeries, Series outputSeries)
  214. {
  215. throw new NotImplementedException ();
  216. }
  217. [MonoTODO]
  218. public void InsertEmptyPoints (double interval, IntervalType intervalType, string seriesName)
  219. {
  220. throw new NotImplementedException ();
  221. }
  222. [MonoTODO]
  223. public void InsertEmptyPoints (double interval, IntervalType intervalType, Series series)
  224. {
  225. throw new NotImplementedException ();
  226. }
  227. [MonoTODO]
  228. public void InsertEmptyPoints (double interval, IntervalType intervalType, double intervalOffset, IntervalType intervalOffsetType, string seriesName)
  229. {
  230. throw new NotImplementedException ();
  231. }
  232. [MonoTODO]
  233. public void InsertEmptyPoints (double interval, IntervalType intervalType, double intervalOffset, IntervalType intervalOffsetType, Series series)
  234. {
  235. throw new NotImplementedException ();
  236. }
  237. [MonoTODO]
  238. public void InsertEmptyPoints (double interval, IntervalType intervalType, double intervalOffset, IntervalType intervalOffsetType, double fromXValue, double toXValue, string seriesName)
  239. {
  240. throw new NotImplementedException ();
  241. }
  242. [MonoTODO]
  243. public void InsertEmptyPoints (double interval, IntervalType intervalType, double intervalOffset, IntervalType intervalOffsetType, double fromXValue, double toXValue, Series series)
  244. {
  245. throw new NotImplementedException ();
  246. }
  247. [MonoTODO]
  248. public void Sort (IComparer<DataPoint> comparer, string seriesName)
  249. {
  250. throw new NotImplementedException ();
  251. }
  252. [MonoTODO]
  253. public void Sort (IComparer<DataPoint> comparer, Series series)
  254. {
  255. throw new NotImplementedException ();
  256. }
  257. [MonoTODO]
  258. public void Sort (PointSortOrder pointSortOrder, string seriesName)
  259. {
  260. throw new NotImplementedException ();
  261. }
  262. [MonoTODO]
  263. public void Sort (PointSortOrder pointSortOrder, Series series)
  264. {
  265. throw new NotImplementedException ();
  266. }
  267. [MonoTODO]
  268. public void Sort (PointSortOrder pointSortOrder, string sortBy, string seriesName)
  269. {
  270. throw new NotImplementedException ();
  271. }
  272. [MonoTODO]
  273. public void Sort (PointSortOrder pointSortOrder, string sortBy, Series series)
  274. {
  275. throw new NotImplementedException ();
  276. }
  277. }
  278. }