OxyPlot.WP8.xml 60 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228
  1. <?xml version="1.0"?>
  2. <doc>
  3. <assembly>
  4. <name>OxyPlot.WP8</name>
  5. </assembly>
  6. <members>
  7. <member name="T:OxyPlot.WP8.OxyColorConverter">
  8. <summary>
  9. Converts between <see cref="T:OxyPlot.OxyColor"/> and <see cref="T:System.Windows.Media.Color"/>.
  10. </summary>
  11. </member>
  12. <member name="M:OxyPlot.WP8.OxyColorConverter.Convert(System.Object,System.Type,System.Object,System.Globalization.CultureInfo)">
  13. <summary>
  14. Modifies the source data before passing it to the target for display in the UI.
  15. </summary>
  16. <param name="value">The source data being passed to the target.</param>
  17. <param name="targetType">The <see cref="T:System.Type" /> of data expected by the target dependency property.</param>
  18. <param name="parameter">An optional parameter to be used in the converter logic.</param>
  19. <param name="culture">The culture of the conversion.</param>
  20. <returns>The value to be passed to the target dependency property.</returns>
  21. </member>
  22. <member name="M:OxyPlot.WP8.OxyColorConverter.ConvertBack(System.Object,System.Type,System.Object,System.Globalization.CultureInfo)">
  23. <summary>
  24. Modifies the target data before passing it to the source object. This method is called only in <see cref="F:System.Windows.Data.BindingMode.TwoWay" /> bindings.
  25. </summary>
  26. <param name="value">The target data being passed to the source.</param>
  27. <param name="targetType">The <see cref="T:System.Type" /> of data expected by the source object.</param>
  28. <param name="parameter">An optional parameter to be used in the converter logic.</param>
  29. <param name="culture">The culture of the conversion.</param>
  30. <returns>The value to be passed to the source object.</returns>
  31. </member>
  32. <member name="T:OxyPlot.WP8.ThicknessConverter">
  33. <summary>
  34. Converts from <see cref="T:System.Windows.Thickness"/> to the maximum thicknesses.
  35. </summary>
  36. <remarks>This is used in the <see cref="T:OxyPlot.WP8.TrackerControl"/> to convert BorderThickness properties to Path.StrokeThickness (double).
  37. The maximum thickness value is used.</remarks>
  38. </member>
  39. <member name="M:OxyPlot.WP8.ThicknessConverter.Convert(System.Object,System.Type,System.Object,System.Globalization.CultureInfo)">
  40. <summary>
  41. Modifies the source data before passing it to the target for display in the UI.
  42. </summary>
  43. <param name="value">The source data being passed to the target.</param>
  44. <param name="targetType">The <see cref="T:System.Type" /> of data expected by the target dependency property.</param>
  45. <param name="parameter">An optional parameter to be used in the converter logic.</param>
  46. <param name="culture">The culture of the conversion.</param>
  47. <returns>The value to be passed to the target dependency property.</returns>
  48. </member>
  49. <member name="M:OxyPlot.WP8.ThicknessConverter.ConvertBack(System.Object,System.Type,System.Object,System.Globalization.CultureInfo)">
  50. <summary>
  51. Modifies the target data before passing it to the source object. This method is called only in <see cref="F:System.Windows.Data.BindingMode.TwoWay" /> bindings.
  52. </summary>
  53. <param name="value">The target data being passed to the source.</param>
  54. <param name="targetType">The <see cref="T:System.Type" /> of data expected by the source object.</param>
  55. <param name="parameter">An optional parameter to be used in the converter logic.</param>
  56. <param name="culture">The culture of the conversion.</param>
  57. <returns>The value to be passed to the source object.</returns>
  58. </member>
  59. <member name="T:OxyPlot.WP8.CanvasRenderContext">
  60. <summary>
  61. Implements <see cref="T:OxyPlot.IRenderContext"/> for <see cref="T:System.Windows.Controls.Canvas"/>.
  62. </summary>
  63. </member>
  64. <member name="F:OxyPlot.WP8.CanvasRenderContext.brushCache">
  65. <summary>
  66. The brush cache.
  67. </summary>
  68. </member>
  69. <member name="F:OxyPlot.WP8.CanvasRenderContext.canvas">
  70. <summary>
  71. The canvas.
  72. </summary>
  73. </member>
  74. <member name="F:OxyPlot.WP8.CanvasRenderContext.imagesInUse">
  75. <summary>
  76. The images in use
  77. </summary>
  78. </member>
  79. <member name="F:OxyPlot.WP8.CanvasRenderContext.imageCache">
  80. <summary>
  81. The image cache
  82. </summary>
  83. </member>
  84. <member name="F:OxyPlot.WP8.CanvasRenderContext.currentToolTip">
  85. <summary>
  86. The current tool tip
  87. </summary>
  88. </member>
  89. <member name="F:OxyPlot.WP8.CanvasRenderContext.clipRect">
  90. <summary>
  91. The clip rectangle.
  92. </summary>
  93. </member>
  94. <member name="F:OxyPlot.WP8.CanvasRenderContext.clip">
  95. <summary>
  96. The clip flag.
  97. </summary>
  98. </member>
  99. <member name="M:OxyPlot.WP8.CanvasRenderContext.#ctor(System.Windows.Controls.Canvas)">
  100. <summary>
  101. Initializes a new instance of the <see cref="T:OxyPlot.WP8.CanvasRenderContext"/> class.
  102. </summary>
  103. <param name="canvas">The canvas.</param>
  104. </member>
  105. <member name="M:OxyPlot.WP8.CanvasRenderContext.DrawEllipse(OxyPlot.OxyRect,OxyPlot.OxyColor,OxyPlot.OxyColor,System.Double)">
  106. <summary>
  107. Draws an ellipse.
  108. </summary>
  109. <param name="rect">The rectangle.</param>
  110. <param name="fill">The fill color.</param>
  111. <param name="stroke">The stroke color.</param>
  112. <param name="thickness">The thickness.</param>
  113. </member>
  114. <member name="M:OxyPlot.WP8.CanvasRenderContext.DrawEllipses(System.Collections.Generic.IList{OxyPlot.OxyRect},OxyPlot.OxyColor,OxyPlot.OxyColor,System.Double)">
  115. <summary>
  116. Draws the collection of ellipses, where all have the same stroke and fill.
  117. This performs better than calling DrawEllipse multiple times.
  118. </summary>
  119. <param name="rectangles">The rectangles.</param>
  120. <param name="fill">The fill color.</param>
  121. <param name="stroke">The stroke color.</param>
  122. <param name="thickness">The stroke thickness.</param>
  123. </member>
  124. <member name="M:OxyPlot.WP8.CanvasRenderContext.DrawLine(System.Collections.Generic.IList{OxyPlot.ScreenPoint},OxyPlot.OxyColor,System.Double,System.Double[],OxyPlot.LineJoin,System.Boolean)">
  125. <summary>
  126. Draws the polyline from the specified points.
  127. </summary>
  128. <param name="points">The points.</param>
  129. <param name="stroke">The stroke color.</param>
  130. <param name="thickness">The stroke thickness.</param>
  131. <param name="dashArray">The dash array.</param>
  132. <param name="lineJoin">The line join type.</param>
  133. <param name="aliased">if set to <c>true</c> the shape will be aliased.</param>
  134. </member>
  135. <member name="M:OxyPlot.WP8.CanvasRenderContext.DrawLineSegments(System.Collections.Generic.IList{OxyPlot.ScreenPoint},OxyPlot.OxyColor,System.Double,System.Double[],OxyPlot.LineJoin,System.Boolean)">
  136. <summary>
  137. Draws the multiple line segments defined by points (0,1) (2,3) (4,5) etc.
  138. This should have better performance than calling DrawLine for each segment.
  139. </summary>
  140. <param name="points">The points.</param>
  141. <param name="stroke">The stroke color.</param>
  142. <param name="thickness">The stroke thickness.</param>
  143. <param name="dashArray">The dash array.</param>
  144. <param name="lineJoin">The line join type.</param>
  145. <param name="aliased">if set to <c>true</c> the shape will be aliased.</param>
  146. </member>
  147. <member name="M:OxyPlot.WP8.CanvasRenderContext.DrawPolygon(System.Collections.Generic.IList{OxyPlot.ScreenPoint},OxyPlot.OxyColor,OxyPlot.OxyColor,System.Double,System.Double[],OxyPlot.LineJoin,System.Boolean)">
  148. <summary>
  149. Draws the polygon from the specified points. The polygon can have stroke and/or fill.
  150. </summary>
  151. <param name="points">The points.</param>
  152. <param name="fill">The fill color.</param>
  153. <param name="stroke">The stroke color.</param>
  154. <param name="thickness">The stroke thickness.</param>
  155. <param name="dashArray">The dash array.</param>
  156. <param name="lineJoin">The line join type.</param>
  157. <param name="aliased">if set to <c>true</c> the shape will be aliased.</param>
  158. </member>
  159. <member name="M:OxyPlot.WP8.CanvasRenderContext.DrawPolygons(System.Collections.Generic.IList{System.Collections.Generic.IList{OxyPlot.ScreenPoint}},OxyPlot.OxyColor,OxyPlot.OxyColor,System.Double,System.Double[],OxyPlot.LineJoin,System.Boolean)">
  160. <summary>
  161. Draws a collection of polygons, where all polygons have the same stroke and fill.
  162. This performs better than calling DrawPolygon multiple times.
  163. </summary>
  164. <param name="polygons">The polygons.</param>
  165. <param name="fill">The fill color.</param>
  166. <param name="stroke">The stroke color.</param>
  167. <param name="thickness">The stroke thickness.</param>
  168. <param name="dashArray">The dash array.</param>
  169. <param name="lineJoin">The line join type.</param>
  170. <param name="aliased">if set to <c>true</c> the shape will be aliased.</param>
  171. </member>
  172. <member name="M:OxyPlot.WP8.CanvasRenderContext.DrawRectangle(OxyPlot.OxyRect,OxyPlot.OxyColor,OxyPlot.OxyColor,System.Double)">
  173. <summary>
  174. Draws the rectangle.
  175. </summary>
  176. <param name="rect">The rectangle.</param>
  177. <param name="fill">The fill color.</param>
  178. <param name="stroke">The stroke color.</param>
  179. <param name="thickness">The stroke thickness.</param>
  180. </member>
  181. <member name="M:OxyPlot.WP8.CanvasRenderContext.DrawRectangles(System.Collections.Generic.IList{OxyPlot.OxyRect},OxyPlot.OxyColor,OxyPlot.OxyColor,System.Double)">
  182. <summary>
  183. Draws a collection of rectangles, where all have the same stroke and fill.
  184. This performs better than calling DrawRectangle multiple times.
  185. </summary>
  186. <param name="rectangles">The rectangles.</param>
  187. <param name="fill">The fill color.</param>
  188. <param name="stroke">The stroke color.</param>
  189. <param name="thickness">The stroke thickness.</param>
  190. </member>
  191. <member name="M:OxyPlot.WP8.CanvasRenderContext.DrawText(OxyPlot.ScreenPoint,System.String,OxyPlot.OxyColor,System.String,System.Double,System.Double,System.Double,OxyPlot.HorizontalAlignment,OxyPlot.VerticalAlignment,System.Nullable{OxyPlot.OxySize})">
  192. <summary>
  193. Draws the text.
  194. </summary>
  195. <param name="p">The position.</param>
  196. <param name="text">The text.</param>
  197. <param name="fill">The fill color.</param>
  198. <param name="fontFamily">The font family.</param>
  199. <param name="fontSize">Size of the font.</param>
  200. <param name="fontWeight">The font weight.</param>
  201. <param name="rotate">The rotation angle.</param>
  202. <param name="halign">The horizontal alignment.</param>
  203. <param name="valign">The vertical alignment.</param>
  204. <param name="maxSize">The maximum size of the text.</param>
  205. </member>
  206. <member name="M:OxyPlot.WP8.CanvasRenderContext.MeasureText(System.String,System.String,System.Double,System.Double)">
  207. <summary>
  208. Measures the text.
  209. </summary>
  210. <param name="text">The text.</param>
  211. <param name="fontFamily">The font family.</param>
  212. <param name="fontSize">Size of the font.</param>
  213. <param name="fontWeight">The font weight.</param>
  214. <returns>The text size.</returns>
  215. </member>
  216. <member name="M:OxyPlot.WP8.CanvasRenderContext.SetToolTip(System.String)">
  217. <summary>
  218. Sets the tool tip for the following items.
  219. </summary>
  220. <param name="text">The text in the tooltip.</param>
  221. </member>
  222. <member name="M:OxyPlot.WP8.CanvasRenderContext.DrawImage(OxyPlot.OxyImage,System.Double,System.Double,System.Double,System.Double,System.Double,System.Double,System.Double,System.Double,System.Double,System.Boolean)">
  223. <summary>
  224. Draws the specified portion of the specified <see cref="T:OxyPlot.OxyImage"/> at the specified location and with the specified size.
  225. </summary>
  226. <param name="source">The source.</param>
  227. <param name="srcX">The x-coordinate of the upper-left corner of the portion of the source image to draw.</param>
  228. <param name="srcY">The y-coordinate of the upper-left corner of the portion of the source image to draw.</param>
  229. <param name="srcWidth">Width of the portion of the source image to draw.</param>
  230. <param name="srcHeight">Height of the portion of the source image to draw.</param>
  231. <param name="destX">The x-coordinate of the upper-left corner of drawn image.</param>
  232. <param name="destY">The y-coordinate of the upper-left corner of drawn image.</param>
  233. <param name="destWidth">The width of the drawn image.</param>
  234. <param name="destHeight">The height of the drawn image.</param>
  235. <param name="opacity">The opacity.</param>
  236. <param name="interpolate">interpolate if set to <c>true</c>.</param>
  237. </member>
  238. <member name="M:OxyPlot.WP8.CanvasRenderContext.SetClip(OxyPlot.OxyRect)">
  239. <summary>
  240. Sets the clipping rectangle.
  241. </summary>
  242. <param name="clippingRect">The clipping rectangle.</param>
  243. <returns>True if the clipping rectangle was set.</returns>
  244. </member>
  245. <member name="M:OxyPlot.WP8.CanvasRenderContext.ResetClip">
  246. <summary>
  247. Resets the clipping rectangle.
  248. </summary>
  249. </member>
  250. <member name="M:OxyPlot.WP8.CanvasRenderContext.CleanUp">
  251. <summary>
  252. Cleans up resources not in use.
  253. </summary>
  254. <remarks>This method is called at the end of each rendering.</remarks>
  255. </member>
  256. <member name="M:OxyPlot.WP8.CanvasRenderContext.CreateDashArrayCollection(System.Collections.Generic.IEnumerable{System.Double})">
  257. <summary>
  258. Creates the dash array collection.
  259. </summary>
  260. <param name="dashArray">The dash array.</param>
  261. <returns>A DoubleCollection.</returns>
  262. </member>
  263. <member name="M:OxyPlot.WP8.CanvasRenderContext.GetFontWeight(System.Double)">
  264. <summary>
  265. Gets the font weight.
  266. </summary>
  267. <param name="fontWeight">The font weight.</param>
  268. <returns>A <see cref="T:System.Windows.FontWeight"/></returns>
  269. </member>
  270. <member name="M:OxyPlot.WP8.CanvasRenderContext.Add(System.Windows.UIElement,System.Double,System.Double)">
  271. <summary>
  272. Adds the specified element to the canvas.
  273. </summary>
  274. <param name="element">The element.</param>
  275. <param name="clipOffsetX">The clip offset X.</param>
  276. <param name="clipOffsetY">The clip offset Y.</param>
  277. </member>
  278. <member name="M:OxyPlot.WP8.CanvasRenderContext.ApplyTooltip(System.Windows.DependencyObject)">
  279. <summary>
  280. Applies the tooltip to the specified element.
  281. </summary>
  282. <param name="element">The element.</param>
  283. </member>
  284. <member name="M:OxyPlot.WP8.CanvasRenderContext.GetCachedBrush(OxyPlot.OxyColor)">
  285. <summary>
  286. Gets the cached brush.
  287. </summary>
  288. <param name="stroke">The stroke.</param>
  289. <returns>The brush.</returns>
  290. </member>
  291. <member name="M:OxyPlot.WP8.CanvasRenderContext.SetStroke(System.Windows.Shapes.Shape,OxyPlot.OxyColor,System.Double,OxyPlot.LineJoin,System.Collections.Generic.IEnumerable{System.Double},System.Boolean)">
  292. <summary>
  293. Sets the stroke of the specified shape.
  294. </summary>
  295. <param name="shape">The shape.</param>
  296. <param name="stroke">The stroke.</param>
  297. <param name="thickness">The thickness.</param>
  298. <param name="lineJoin">The line join.</param>
  299. <param name="dashArray">The dash array.</param>
  300. <param name="aliased">aliased if set to <c>true</c>.</param>
  301. </member>
  302. <member name="M:OxyPlot.WP8.CanvasRenderContext.ApplyClip(System.Windows.UIElement,System.Double,System.Double)">
  303. <summary>
  304. Applies the clip rectangle.
  305. </summary>
  306. <param name="image">The image.</param>
  307. <param name="x">The x offset of the element.</param>
  308. <param name="y">The y offset of the element.</param>
  309. </member>
  310. <member name="M:OxyPlot.WP8.CanvasRenderContext.GetImageSource(OxyPlot.OxyImage)">
  311. <summary>
  312. Gets the bitmap source.
  313. </summary>
  314. <param name="image">The image.</param>
  315. <returns>The bitmap source.</returns>
  316. </member>
  317. <member name="P:OxyPlot.WP8.CanvasRenderContext.Height">
  318. <summary>
  319. Gets the height.
  320. </summary>
  321. <value>The height.</value>
  322. </member>
  323. <member name="P:OxyPlot.WP8.CanvasRenderContext.PaintBackground">
  324. <summary>
  325. Gets a value indicating whether to paint the background.
  326. </summary>
  327. <value><c>true</c> if the background should be painted; otherwise, <c>false</c>.</value>
  328. </member>
  329. <member name="P:OxyPlot.WP8.CanvasRenderContext.Width">
  330. <summary>
  331. Gets the width.
  332. </summary>
  333. <value>The width.</value>
  334. </member>
  335. <member name="P:OxyPlot.WP8.CanvasRenderContext.RendersToScreen">
  336. <summary>
  337. Gets or sets a value indicating whether the context renders to screen.
  338. </summary>
  339. <value><c>true</c> if the context renders to screen; otherwise, <c>false</c>.</value>
  340. </member>
  341. <member name="T:OxyPlot.WP8.NamespaceDoc">
  342. <summary>
  343. The OxyPlot.WP8 namespace contains controls for WP8.
  344. </summary>
  345. </member>
  346. <member name="T:OxyPlot.WP8.Plot">
  347. <summary>
  348. Represents a control that displays a <see cref="T:OxyPlot.PlotModel"/>.
  349. </summary>
  350. </member>
  351. <member name="T:OxyPlot.WP8.PlotView">
  352. <summary>
  353. Represents a control that displays a <see cref="T:OxyPlot.PlotModel"/>.
  354. </summary>
  355. </member>
  356. <member name="F:OxyPlot.WP8.PlotView.PartGrid">
  357. <summary>
  358. The Grid PART constant.
  359. </summary>
  360. </member>
  361. <member name="F:OxyPlot.WP8.PlotView.ControllerProperty">
  362. <summary>
  363. Identifies the <see cref="P:OxyPlot.WP8.PlotView.Controller"/> dependency property.
  364. </summary>
  365. </member>
  366. <member name="F:OxyPlot.WP8.PlotView.DefaultTrackerTemplateProperty">
  367. <summary>
  368. Identifies the <see cref="P:OxyPlot.WP8.PlotView.DefaultTrackerTemplate"/> dependency property.
  369. </summary>
  370. </member>
  371. <member name="F:OxyPlot.WP8.PlotView.HandleRightClicksProperty">
  372. <summary>
  373. Identifies the <see cref="P:OxyPlot.WP8.PlotView.HandleRightClicks"/> dependency property.
  374. </summary>
  375. </member>
  376. <member name="F:OxyPlot.WP8.PlotView.IsMouseWheelEnabledProperty">
  377. <summary>
  378. Identifies the <see cref="P:OxyPlot.WP8.PlotView.IsMouseWheelEnabled"/> dependency property.
  379. </summary>
  380. </member>
  381. <member name="F:OxyPlot.WP8.PlotView.ModelProperty">
  382. <summary>
  383. Identifies the <see cref="P:OxyPlot.WP8.PlotView.Model"/> dependency property.
  384. </summary>
  385. </member>
  386. <member name="F:OxyPlot.WP8.PlotView.PanCursorProperty">
  387. <summary>
  388. Identifies the <see cref="P:OxyPlot.WP8.PlotView.PanCursor"/> dependency property.
  389. </summary>
  390. </member>
  391. <member name="F:OxyPlot.WP8.PlotView.ZoomHorizontalCursorProperty">
  392. <summary>
  393. Identifies the <see cref="P:OxyPlot.WP8.PlotView.ZoomHorizontalCursor"/> dependency property.
  394. </summary>
  395. </member>
  396. <member name="F:OxyPlot.WP8.PlotView.ZoomRectangleCursorProperty">
  397. <summary>
  398. Identifies the <see cref="P:OxyPlot.WP8.PlotView.ZoomRectangleCursor"/> dependency property.
  399. </summary>
  400. </member>
  401. <member name="F:OxyPlot.WP8.PlotView.ZoomRectangleTemplateProperty">
  402. <summary>
  403. Identifies the <see cref="P:OxyPlot.WP8.PlotView.ZoomRectangleTemplate"/> dependency property.
  404. </summary>
  405. </member>
  406. <member name="F:OxyPlot.WP8.PlotView.ZoomVerticalCursorProperty">
  407. <summary>
  408. Identifies the <see cref="P:OxyPlot.WP8.PlotView.ZoomVerticalCursor"/> dependency property.
  409. </summary>
  410. </member>
  411. <member name="F:OxyPlot.WP8.PlotView.modelLock">
  412. <summary>
  413. The model lock.
  414. </summary>
  415. </member>
  416. <member name="F:OxyPlot.WP8.PlotView.trackerDefinitions">
  417. <summary>
  418. The tracker definitions.
  419. </summary>
  420. </member>
  421. <member name="F:OxyPlot.WP8.PlotView.renderContext">
  422. <summary>
  423. The render context
  424. </summary>
  425. </member>
  426. <member name="F:OxyPlot.WP8.PlotView.canvas">
  427. <summary>
  428. The canvas.
  429. </summary>
  430. </member>
  431. <member name="F:OxyPlot.WP8.PlotView.currentModel">
  432. <summary>
  433. The current model.
  434. </summary>
  435. </member>
  436. <member name="F:OxyPlot.WP8.PlotView.currentTracker">
  437. <summary>
  438. The current tracker.
  439. </summary>
  440. </member>
  441. <member name="F:OxyPlot.WP8.PlotView.grid">
  442. <summary>
  443. The grid.
  444. </summary>
  445. </member>
  446. <member name="F:OxyPlot.WP8.PlotView.defaultController">
  447. <summary>
  448. The default controller.
  449. </summary>
  450. </member>
  451. <member name="F:OxyPlot.WP8.PlotView.isPlotInvalidated">
  452. <summary>
  453. Invalidation flag (0: no update, 1: update visual elements only, 2:update data).
  454. </summary>
  455. </member>
  456. <member name="F:OxyPlot.WP8.PlotView.overlays">
  457. <summary>
  458. The overlays.
  459. </summary>
  460. </member>
  461. <member name="F:OxyPlot.WP8.PlotView.zoomControl">
  462. <summary>
  463. The zoom control.
  464. </summary>
  465. </member>
  466. <member name="M:OxyPlot.WP8.PlotView.#ctor">
  467. <summary>
  468. Initializes a new instance of the <see cref="T:OxyPlot.WP8.PlotView"/> class.
  469. </summary>
  470. </member>
  471. <member name="M:OxyPlot.WP8.PlotView.HideTracker">
  472. <summary>
  473. Hides the tracker.
  474. </summary>
  475. </member>
  476. <member name="M:OxyPlot.WP8.PlotView.HideZoomRectangle">
  477. <summary>
  478. Hides the zoom rectangle.
  479. </summary>
  480. </member>
  481. <member name="M:OxyPlot.WP8.PlotView.InvalidatePlot(System.Boolean)">
  482. <summary>
  483. Invalidate the PlotView (not blocking the UI thread)
  484. </summary>
  485. <param name="updateData">The update Data.</param>
  486. </member>
  487. <member name="M:OxyPlot.WP8.PlotView.OnApplyTemplate">
  488. <summary>
  489. When overridden in a derived class, is invoked whenever application code or internal processes (such as a rebuilding layout pass) call <see cref="M:System.Windows.Controls.Control.ApplyTemplate" /> . In simplest terms, this means the method is called just before a UI element displays in an application. For more information, see Remarks.
  490. </summary>
  491. </member>
  492. <member name="M:OxyPlot.WP8.PlotView.SaveBitmap(System.String)">
  493. <summary>
  494. Saves the PlotView as a bitmap.
  495. </summary>
  496. <param name="fileName">Name of the file.</param>
  497. </member>
  498. <member name="M:OxyPlot.WP8.PlotView.SetCursorType(OxyPlot.CursorType)">
  499. <summary>
  500. Sets the cursor type.
  501. </summary>
  502. <param name="cursorType">The cursor type.</param>
  503. </member>
  504. <member name="M:OxyPlot.WP8.PlotView.ShowTracker(OxyPlot.TrackerHitResult)">
  505. <summary>
  506. Shows the tracker.
  507. </summary>
  508. <param name="trackerHitResult">The tracker data.</param>
  509. </member>
  510. <member name="M:OxyPlot.WP8.PlotView.ShowZoomRectangle(OxyPlot.OxyRect)">
  511. <summary>
  512. Shows the zoom rectangle.
  513. </summary>
  514. <param name="r">The rectangle.</param>
  515. </member>
  516. <member name="M:OxyPlot.WP8.PlotView.ToBitmap">
  517. <summary>
  518. Renders the PlotView to a bitmap.
  519. </summary>
  520. <returns>A bitmap.</returns>
  521. </member>
  522. <member name="M:OxyPlot.WP8.PlotView.SetClipboardText(System.String)">
  523. <summary>
  524. Stores text on the clipboard.
  525. </summary>
  526. <param name="text">The text.</param>
  527. </member>
  528. <member name="M:OxyPlot.WP8.PlotView.OnKeyDown(System.Windows.Input.KeyEventArgs)">
  529. <summary>
  530. Called before the <see cref="E:System.Windows.UIElement.KeyDown" /> event occurs.
  531. </summary>
  532. <param name="e">The data for the event.</param>
  533. </member>
  534. <member name="M:OxyPlot.WP8.PlotView.OnManipulationStarted(System.Windows.Input.ManipulationStartedEventArgs)">
  535. <summary>
  536. Called when the <see cref="E:System.Windows.UIElement.ManipulationStarted" /> event occurs.
  537. </summary>
  538. <param name="e">The data for the event.</param>
  539. </member>
  540. <member name="M:OxyPlot.WP8.PlotView.OnManipulationDelta(System.Windows.Input.ManipulationDeltaEventArgs)">
  541. <summary>
  542. Called when the <see cref="E:System.Windows.UIElement.ManipulationDelta" /> event occurs.
  543. </summary>
  544. <param name="e">The data for the event.</param>
  545. </member>
  546. <member name="M:OxyPlot.WP8.PlotView.OnManipulationCompleted(System.Windows.Input.ManipulationCompletedEventArgs)">
  547. <summary>
  548. Called when the <see cref="E:System.Windows.UIElement.ManipulationCompleted" /> event occurs.
  549. </summary>
  550. <param name="e">The data for the event.</param>
  551. </member>
  552. <member name="M:OxyPlot.WP8.PlotView.OnMouseLeftButtonDown(System.Windows.Input.MouseButtonEventArgs)">
  553. <summary>
  554. Called before the <see cref="E:System.Windows.UIElement.MouseLeftButtonDown" /> event occurs.
  555. </summary>
  556. <param name="e">The data for the event.</param>
  557. </member>
  558. <member name="M:OxyPlot.WP8.PlotView.OnMouseLeftButtonUp(System.Windows.Input.MouseButtonEventArgs)">
  559. <summary>
  560. Called before the <see cref="E:System.Windows.UIElement.MouseLeftButtonUp" /> event occurs.
  561. </summary>
  562. <param name="e">The data for the event.</param>
  563. </member>
  564. <member name="M:OxyPlot.WP8.PlotView.OnMouseRightButtonDown(System.Windows.Input.MouseButtonEventArgs)">
  565. <summary>
  566. Raises the <see cref="E:System.Windows.UIElement.MouseRightButtonDown" /> event.
  567. </summary>
  568. <param name="e">A <see cref="T:System.Windows.Input.MouseButtonEventArgs" /> that contains the event data.</param>
  569. </member>
  570. <member name="M:OxyPlot.WP8.PlotView.OnMouseRightButtonUp(System.Windows.Input.MouseButtonEventArgs)">
  571. <summary>
  572. Raises the <see cref="E:System.Windows.UIElement.MouseRightButtonUp" /> event.
  573. </summary>
  574. <param name="e">A <see cref="T:System.Windows.Input.MouseButtonEventArgs" /> that contains the event data.</param>
  575. </member>
  576. <member name="M:OxyPlot.WP8.PlotView.OnMouseButtonDown(OxyPlot.OxyMouseButton,System.Windows.Input.MouseButtonEventArgs)">
  577. <summary>
  578. Called when a mouse button is pressed down.
  579. </summary>
  580. <param name="button">The button.</param>
  581. <param name="e">The <see cref="T:System.Windows.Input.MouseButtonEventArgs"/> instance containing the event data.</param>
  582. </member>
  583. <member name="M:OxyPlot.WP8.PlotView.OnMouseMove(System.Windows.Input.MouseEventArgs)">
  584. <summary>
  585. Called before the <see cref="E:System.Windows.UIElement.MouseMove" /> event occurs.
  586. </summary>
  587. <param name="e">The data for the event.</param>
  588. </member>
  589. <member name="M:OxyPlot.WP8.PlotView.OnMouseButtonUp(OxyPlot.OxyMouseButton,System.Windows.Input.MouseButtonEventArgs)">
  590. <summary>
  591. Raises the MouseButtonUp event.
  592. </summary>
  593. <param name="button">The button.</param>
  594. <param name="e">The <see cref="T:System.Windows.Input.MouseButtonEventArgs"/> instance containing the event data.</param>
  595. </member>
  596. <member name="M:OxyPlot.WP8.PlotView.OnMouseWheel(System.Windows.Input.MouseWheelEventArgs)">
  597. <summary>
  598. Called before the <see cref="E:System.Windows.UIElement.MouseWheel" /> event occurs to provide handling for the event in a derived class without attaching a delegate.
  599. </summary>
  600. <param name="e">A <see cref="T:System.Windows.Input.MouseWheelEventArgs" /> that contains the event data.</param>
  601. </member>
  602. <member name="M:OxyPlot.WP8.PlotView.OnMouseEnter(System.Windows.Input.MouseEventArgs)">
  603. <summary>
  604. Called before the <see cref="E:System.Windows.UIElement.MouseEnter" /> event occurs.
  605. </summary>
  606. <param name="e">The data for the event.</param>
  607. </member>
  608. <member name="M:OxyPlot.WP8.PlotView.OnMouseLeave(System.Windows.Input.MouseEventArgs)">
  609. <summary>
  610. Called before the <see cref="E:System.Windows.UIElement.MouseLeave" /> event occurs.
  611. </summary>
  612. <param name="e">The data for the event.</param>
  613. </member>
  614. <member name="M:OxyPlot.WP8.PlotView.ArrangeOverride(System.Windows.Size)">
  615. <summary>
  616. Provides the behavior for the Arrange pass of Silverlight layout. Classes can override this method to define their own Arrange pass behavior.
  617. </summary>
  618. <param name="finalSize">The final area within the parent that this object should use to arrange itself and its children.</param>
  619. <returns>The actual size that is used after the element is arranged in layout.</returns>
  620. </member>
  621. <member name="M:OxyPlot.WP8.PlotView.ModelChanged(System.Windows.DependencyObject,System.Windows.DependencyPropertyChangedEventArgs)">
  622. <summary>
  623. Called when the Model is changed.
  624. </summary>
  625. <param name="d">The d.</param>
  626. <param name="e">The <see cref="T:System.Windows.DependencyPropertyChangedEventArgs"/> instance containing the event data.</param>
  627. </member>
  628. <member name="M:OxyPlot.WP8.PlotView.TrySetClipboardText(System.String)">
  629. <summary>
  630. Sets the clipboard text.
  631. </summary>
  632. <param name="text">The text.</param>
  633. </member>
  634. <member name="M:OxyPlot.WP8.PlotView.OnLoaded(System.Object,System.Windows.RoutedEventArgs)">
  635. <summary>
  636. Called when the control is loaded.
  637. </summary>
  638. <param name="sender">The sender.</param>
  639. <param name="e">The <see cref="T:System.Windows.RoutedEventArgs"/> instance containing the event data.</param>
  640. </member>
  641. <member name="M:OxyPlot.WP8.PlotView.OnModelChanged">
  642. <summary>
  643. Called when the model is changed.
  644. </summary>
  645. </member>
  646. <member name="M:OxyPlot.WP8.PlotView.OnSizeChanged(System.Object,System.Windows.SizeChangedEventArgs)">
  647. <summary>
  648. Called when the size of the control is changed.
  649. </summary>
  650. <param name="sender">The sender.</param>
  651. <param name="e">The <see cref="T:System.Windows.SizeChangedEventArgs"/> instance containing the event data.</param>
  652. </member>
  653. <member name="M:OxyPlot.WP8.PlotView.UpdateModel(System.Boolean)">
  654. <summary>
  655. Updates the model.
  656. </summary>
  657. <param name="updateData">The update Data.</param>
  658. </member>
  659. <member name="M:OxyPlot.WP8.PlotView.UpdateVisuals">
  660. <summary>
  661. Updates the visuals.
  662. </summary>
  663. </member>
  664. <member name="M:OxyPlot.WP8.PlotView.BeginInvoke(System.Action)">
  665. <summary>
  666. Invokes the specified action on the dispatcher, if necessary.
  667. </summary>
  668. <param name="action">The action.</param>
  669. </member>
  670. <member name="P:OxyPlot.WP8.PlotView.Controller">
  671. <summary>
  672. Gets or sets the PlotView controller.
  673. </summary>
  674. <value>The PlotView controller.</value>
  675. </member>
  676. <member name="P:OxyPlot.WP8.PlotView.DefaultTrackerTemplate">
  677. <summary>
  678. Gets or sets the default tracker template.
  679. </summary>
  680. </member>
  681. <member name="P:OxyPlot.WP8.PlotView.HandleRightClicks">
  682. <summary>
  683. Gets or sets a value indicating whether to handle right clicks.
  684. </summary>
  685. </member>
  686. <member name="P:OxyPlot.WP8.PlotView.IsMouseWheelEnabled">
  687. <summary>
  688. Gets or sets a value indicating whether IsMouseWheelEnabled.
  689. </summary>
  690. </member>
  691. <member name="P:OxyPlot.WP8.PlotView.Model">
  692. <summary>
  693. Gets or sets the model.
  694. </summary>
  695. <value>The model.</value>
  696. </member>
  697. <member name="P:OxyPlot.WP8.PlotView.PanCursor">
  698. <summary>
  699. Gets or sets the pan cursor.
  700. </summary>
  701. <value>The pan cursor.</value>
  702. </member>
  703. <member name="P:OxyPlot.WP8.PlotView.ZoomHorizontalCursor">
  704. <summary>
  705. Gets or sets the horizontal zoom cursor.
  706. </summary>
  707. <value>The zoom horizontal cursor.</value>
  708. </member>
  709. <member name="P:OxyPlot.WP8.PlotView.ZoomRectangleCursor">
  710. <summary>
  711. Gets or sets the rectangle zoom cursor.
  712. </summary>
  713. <value>The zoom rectangle cursor.</value>
  714. </member>
  715. <member name="P:OxyPlot.WP8.PlotView.ZoomRectangleTemplate">
  716. <summary>
  717. Gets or sets the zoom rectangle template.
  718. </summary>
  719. <value>The zoom rectangle template.</value>
  720. </member>
  721. <member name="P:OxyPlot.WP8.PlotView.ZoomVerticalCursor">
  722. <summary>
  723. Gets or sets the vertical zoom cursor.
  724. </summary>
  725. <value>The zoom vertical cursor.</value>
  726. </member>
  727. <member name="P:OxyPlot.WP8.PlotView.OxyPlot#IView#ActualModel">
  728. <summary>
  729. Gets the actual model in the view.
  730. </summary>
  731. <value>
  732. The actual model.
  733. </value>
  734. </member>
  735. <member name="P:OxyPlot.WP8.PlotView.ActualModel">
  736. <summary>
  737. Gets the actual model.
  738. </summary>
  739. <value>The actual model.</value>
  740. </member>
  741. <member name="P:OxyPlot.WP8.PlotView.OxyPlot#IView#ActualController">
  742. <summary>
  743. Gets the actual controller.
  744. </summary>
  745. <value>
  746. The actual <see cref="T:OxyPlot.IController"/>.
  747. </value>
  748. </member>
  749. <member name="P:OxyPlot.WP8.PlotView.ClientArea">
  750. <summary>
  751. Gets the coordinates of the client area of the view.
  752. </summary>
  753. </member>
  754. <member name="P:OxyPlot.WP8.PlotView.ActualController">
  755. <summary>
  756. Gets the actual PlotView controller.
  757. </summary>
  758. <value>The actual PlotView controller.</value>
  759. </member>
  760. <member name="P:OxyPlot.WP8.PlotView.TrackerDefinitions">
  761. <summary>
  762. Gets the tracker definitions.
  763. </summary>
  764. <value>The tracker definitions.</value>
  765. </member>
  766. <member name="T:OxyPlot.WP8.TrackerControl">
  767. <summary>
  768. The tracker control.
  769. </summary>
  770. </member>
  771. <member name="F:OxyPlot.WP8.TrackerControl.PartPath">
  772. <summary>
  773. The path part string.
  774. </summary>
  775. </member>
  776. <member name="F:OxyPlot.WP8.TrackerControl.PartContent">
  777. <summary>
  778. The content part string.
  779. </summary>
  780. </member>
  781. <member name="F:OxyPlot.WP8.TrackerControl.PartContentcontainer">
  782. <summary>
  783. The content container part string.
  784. </summary>
  785. </member>
  786. <member name="F:OxyPlot.WP8.TrackerControl.PartHorizontalline">
  787. <summary>
  788. The horizontal line part string.
  789. </summary>
  790. </member>
  791. <member name="F:OxyPlot.WP8.TrackerControl.PartVerticalline">
  792. <summary>
  793. The vertical line part string.
  794. </summary>
  795. </member>
  796. <member name="F:OxyPlot.WP8.TrackerControl.HorizontalLineVisibilityProperty">
  797. <summary>
  798. Identifies the <see cref="P:OxyPlot.WP8.TrackerControl.HorizontalLineVisibility"/> dependency property.
  799. </summary>
  800. </member>
  801. <member name="F:OxyPlot.WP8.TrackerControl.VerticalLineVisibilityProperty">
  802. <summary>
  803. Identifies the <see cref="P:OxyPlot.WP8.TrackerControl.VerticalLineVisibility"/> dependency property.
  804. </summary>
  805. </member>
  806. <member name="F:OxyPlot.WP8.TrackerControl.LineStrokeProperty">
  807. <summary>
  808. Identifies the <see cref="P:OxyPlot.WP8.TrackerControl.LineStroke"/> dependency property.
  809. </summary>
  810. </member>
  811. <member name="F:OxyPlot.WP8.TrackerControl.LineExtentsProperty">
  812. <summary>
  813. Identifies the <see cref="P:OxyPlot.WP8.TrackerControl.LineExtents"/> dependency property.
  814. </summary>
  815. </member>
  816. <member name="F:OxyPlot.WP8.TrackerControl.LineDashArrayProperty">
  817. <summary>
  818. Identifies the <see cref="P:OxyPlot.WP8.TrackerControl.LineDashArray"/> dependency property.
  819. </summary>
  820. </member>
  821. <member name="F:OxyPlot.WP8.TrackerControl.ShowPointerProperty">
  822. <summary>
  823. Identifies the <see cref="P:OxyPlot.WP8.TrackerControl.ShowPointer"/> dependency property.
  824. </summary>
  825. </member>
  826. <member name="F:OxyPlot.WP8.TrackerControl.CornerRadiusProperty">
  827. <summary>
  828. Identifies the <see cref="P:OxyPlot.WP8.TrackerControl.CornerRadius"/> dependency property.
  829. </summary>
  830. </member>
  831. <member name="F:OxyPlot.WP8.TrackerControl.DistanceProperty">
  832. <summary>
  833. Identifies the <see cref="P:OxyPlot.WP8.TrackerControl.Distance"/> dependency property.
  834. </summary>
  835. </member>
  836. <member name="F:OxyPlot.WP8.TrackerControl.CanCenterHorizontallyProperty">
  837. <summary>
  838. Identifies the <see cref="P:OxyPlot.WP8.TrackerControl.CanCenterHorizontally"/> dependency property.
  839. </summary>
  840. </member>
  841. <member name="F:OxyPlot.WP8.TrackerControl.CanCenterVerticallyProperty">
  842. <summary>
  843. Identifies the <see cref="P:OxyPlot.WP8.TrackerControl.CanCenterVertically"/> dependency property.
  844. </summary>
  845. </member>
  846. <member name="F:OxyPlot.WP8.TrackerControl.PositionProperty">
  847. <summary>
  848. Identifies the <see cref="P:OxyPlot.WP8.TrackerControl.Position"/> dependency property.
  849. </summary>
  850. </member>
  851. <member name="F:OxyPlot.WP8.TrackerControl.content">
  852. <summary>
  853. The content.
  854. </summary>
  855. </member>
  856. <member name="F:OxyPlot.WP8.TrackerControl.horizontalLine">
  857. <summary>
  858. The horizontal line.
  859. </summary>
  860. </member>
  861. <member name="F:OxyPlot.WP8.TrackerControl.path">
  862. <summary>
  863. The path.
  864. </summary>
  865. </member>
  866. <member name="F:OxyPlot.WP8.TrackerControl.contentContainer">
  867. <summary>
  868. The content container.
  869. </summary>
  870. </member>
  871. <member name="F:OxyPlot.WP8.TrackerControl.verticalLine">
  872. <summary>
  873. The vertical line.
  874. </summary>
  875. </member>
  876. <member name="M:OxyPlot.WP8.TrackerControl.#ctor">
  877. <summary>
  878. Initializes a new instance of the <see cref="T:OxyPlot.WP8.TrackerControl"/> class.
  879. </summary>
  880. </member>
  881. <member name="M:OxyPlot.WP8.TrackerControl.OnApplyTemplate">
  882. <summary>
  883. When overridden in a derived class, is invoked whenever application code or internal processes call <see cref="M:System.Windows.FrameworkElement.ApplyTemplate" />.
  884. </summary>
  885. </member>
  886. <member name="M:OxyPlot.WP8.TrackerControl.PositionChanged(System.Windows.DependencyObject,System.Windows.DependencyPropertyChangedEventArgs)">
  887. <summary>
  888. Called when the position is changed.
  889. </summary>
  890. <param name="sender">The sender.</param>
  891. <param name="e">The <see cref="T:System.Windows.DependencyPropertyChangedEventArgs"/> instance containing the event data.</param>
  892. </member>
  893. <member name="M:OxyPlot.WP8.TrackerControl.OnPositionChanged(System.Windows.DependencyPropertyChangedEventArgs)">
  894. <summary>
  895. Called when the position is changed.
  896. </summary>
  897. <param name="dependencyPropertyChangedEventArgs">The dependency property changed event args.</param>
  898. </member>
  899. <member name="M:OxyPlot.WP8.TrackerControl.UpdatePositionAndBorder">
  900. <summary>
  901. Update the position and border of the tracker.
  902. </summary>
  903. </member>
  904. <member name="M:OxyPlot.WP8.TrackerControl.CreateBorderGeometry(System.Windows.HorizontalAlignment,System.Windows.VerticalAlignment,System.Double,System.Double,System.Windows.Thickness@)">
  905. <summary>
  906. Create the border geometry.
  907. </summary>
  908. <param name="ha">The horizontal alignment.</param>
  909. <param name="va">The vertical alignment.</param>
  910. <param name="width">The width.</param>
  911. <param name="height">The height.</param>
  912. <param name="margin">The margin.</param>
  913. <returns>The border geometry.</returns>
  914. </member>
  915. <member name="M:OxyPlot.WP8.TrackerControl.CreatePointerBorderGeometry(System.Windows.HorizontalAlignment,System.Windows.VerticalAlignment,System.Double,System.Double,System.Windows.Thickness@)">
  916. <summary>
  917. Create a border geometry with a 'pointer'.
  918. </summary>
  919. <param name="ha">The horizontal alignment.</param>
  920. <param name="va">The vertical alignment.</param>
  921. <param name="width">The width.</param>
  922. <param name="height">The height.</param>
  923. <param name="margin">The margin.</param>
  924. <returns>The border geometry.</returns>
  925. </member>
  926. <member name="P:OxyPlot.WP8.TrackerControl.HorizontalLineVisibility">
  927. <summary>
  928. Gets or sets HorizontalLineVisibility.
  929. </summary>
  930. </member>
  931. <member name="P:OxyPlot.WP8.TrackerControl.VerticalLineVisibility">
  932. <summary>
  933. Gets or sets VerticalLineVisibility.
  934. </summary>
  935. </member>
  936. <member name="P:OxyPlot.WP8.TrackerControl.LineStroke">
  937. <summary>
  938. Gets or sets LineStroke.
  939. </summary>
  940. </member>
  941. <member name="P:OxyPlot.WP8.TrackerControl.LineExtents">
  942. <summary>
  943. Gets or sets LineExtents.
  944. </summary>
  945. </member>
  946. <member name="P:OxyPlot.WP8.TrackerControl.LineDashArray">
  947. <summary>
  948. Gets or sets LineDashArray.
  949. </summary>
  950. </member>
  951. <member name="P:OxyPlot.WP8.TrackerControl.ShowPointer">
  952. <summary>
  953. Gets or sets a value indicating whether to show a 'pointer' on the border.
  954. </summary>
  955. </member>
  956. <member name="P:OxyPlot.WP8.TrackerControl.CornerRadius">
  957. <summary>
  958. Gets or sets the corner radius (only used when ShowPoint=<c>false</c>).
  959. </summary>
  960. </member>
  961. <member name="P:OxyPlot.WP8.TrackerControl.Distance">
  962. <summary>
  963. Gets or sets the distance of the content container from the trackers Position.
  964. </summary>
  965. </member>
  966. <member name="P:OxyPlot.WP8.TrackerControl.CanCenterHorizontally">
  967. <summary>
  968. Gets or sets a value indicating whether the tracker can center its content box horizontally.
  969. </summary>
  970. </member>
  971. <member name="P:OxyPlot.WP8.TrackerControl.CanCenterVertically">
  972. <summary>
  973. Gets or sets a value indicating whether the tracker can center its content box vertically.
  974. </summary>
  975. </member>
  976. <member name="P:OxyPlot.WP8.TrackerControl.Position">
  977. <summary>
  978. Gets or sets Position of the tracker.
  979. </summary>
  980. </member>
  981. <member name="T:OxyPlot.WP8.TrackerDefinition">
  982. <summary>
  983. Represents a tracker definition.
  984. </summary>
  985. <remarks>The tracker definitions make it possible to show different trackers for different series.
  986. The <see cref="P:OxyPlot.Series.Series.TrackerKey"/> property is matched with the <see cref="P:OxyPlot.WP8.TrackerDefinition.TrackerKey"/>
  987. in the TrackerDefinitions collection in the <see cref="T:OxyPlot.WP8.PlotView"/> control.</remarks>
  988. </member>
  989. <member name="F:OxyPlot.WP8.TrackerDefinition.TrackerKeyProperty">
  990. <summary>
  991. Identifies the <see cref="P:OxyPlot.WP8.TrackerDefinition.TrackerKey"/> dependency property.
  992. </summary>
  993. </member>
  994. <member name="F:OxyPlot.WP8.TrackerDefinition.TrackerTemplateProperty">
  995. <summary>
  996. Identifies the <see cref="P:OxyPlot.WP8.TrackerDefinition.TrackerTemplate"/> dependency property.
  997. </summary>
  998. </member>
  999. <member name="P:OxyPlot.WP8.TrackerDefinition.TrackerKey">
  1000. <summary>
  1001. Gets or sets the tracker key.
  1002. </summary>
  1003. <remarks>The Plot will use this property to find the TrackerDefinition that matches the TrackerKey of the current series.</remarks>
  1004. </member>
  1005. <member name="P:OxyPlot.WP8.TrackerDefinition.TrackerTemplate">
  1006. <summary>
  1007. Gets or sets the tracker template.
  1008. </summary>
  1009. <remarks>The tracker control will be added/removed from the Tracker overlay as necessary.
  1010. The DataContext of the tracker will be set to a TrackerHitResult with the current tracker data.</remarks>
  1011. </member>
  1012. <member name="T:OxyPlot.WP8.ConverterExtensions">
  1013. <summary>
  1014. Extension method used to convert to/from Windows/Windows.Media classes.
  1015. </summary>
  1016. </member>
  1017. <member name="M:OxyPlot.WP8.ConverterExtensions.DistanceTo(System.Windows.Point,System.Windows.Point)">
  1018. <summary>
  1019. Calculate the distance between two points.
  1020. </summary>
  1021. <param name="p1">The first point.</param>
  1022. <param name="p2">The second point.</param>
  1023. <returns>The distance.</returns>
  1024. </member>
  1025. <member name="M:OxyPlot.WP8.ConverterExtensions.ToBrush(OxyPlot.OxyColor)">
  1026. <summary>
  1027. Converts a color to a Brush.
  1028. </summary>
  1029. <param name="c">The color.</param>
  1030. <returns>A SolidColorBrush.</returns>
  1031. </member>
  1032. <member name="M:OxyPlot.WP8.ConverterExtensions.ToColor(OxyPlot.OxyColor)">
  1033. <summary>
  1034. Converts an OxyColor to a Color.
  1035. </summary>
  1036. <param name="c">The color.</param>
  1037. <returns>A Color.</returns>
  1038. </member>
  1039. <member name="M:OxyPlot.WP8.ConverterExtensions.ToHorizontalTextAlign(System.Windows.HorizontalAlignment)">
  1040. <summary>
  1041. Converts a HorizontalAlignment to a HorizontalTextAlign.
  1042. </summary>
  1043. <param name="alignment">The alignment.</param>
  1044. <returns>A HorizontalTextAlign.</returns>
  1045. </member>
  1046. <member name="M:OxyPlot.WP8.ConverterExtensions.ToOxyColor(System.Windows.Media.Color)">
  1047. <summary>
  1048. Converts a Color to an OxyColor.
  1049. </summary>
  1050. <param name="color">The color.</param>
  1051. <returns>An OxyColor.</returns>
  1052. </member>
  1053. <member name="M:OxyPlot.WP8.ConverterExtensions.ToOxyColor(System.Windows.Media.Brush)">
  1054. <summary>
  1055. Converts a <see cref="T:System.Windows.Media.Brush"/> to an <see cref="T:OxyPlot.OxyColor"/>.
  1056. </summary>
  1057. <param name="brush">The brush to convert.</param>
  1058. <returns>An <see cref="T:OxyPlot.OxyColor"/>.</returns>
  1059. </member>
  1060. <member name="M:OxyPlot.WP8.ConverterExtensions.ToOxyThickness(System.Windows.Thickness)">
  1061. <summary>
  1062. Converts a Thickness to an OxyThickness.
  1063. </summary>
  1064. <param name="t">The thickness.</param>
  1065. <returns>An OxyPlot thickness.</returns>
  1066. </member>
  1067. <member name="M:OxyPlot.WP8.ConverterExtensions.ToPoint(OxyPlot.ScreenPoint,System.Boolean)">
  1068. <summary>
  1069. Converts a ScreenPoint to a Point.
  1070. </summary>
  1071. <param name="pt">The screen point.</param>
  1072. <param name="aliased">use pixel alignment conversion if set to <c>true</c>.</param>
  1073. <returns>A point.</returns>
  1074. </member>
  1075. <member name="M:OxyPlot.WP8.ConverterExtensions.ToRect(OxyPlot.OxyRect,System.Boolean)">
  1076. <summary>
  1077. Converts an <see cref="T:OxyPlot.OxyRect"/> to a <see cref="T:System.Windows.Rect"/>.
  1078. </summary>
  1079. <param name="r">The rectangle to convert.</param>
  1080. <param name="aliased">use pixel alignment if set to <c>true</c>.</param>
  1081. <returns>A <see cref="T:System.Windows.Rect"/>.</returns>
  1082. </member>
  1083. <member name="M:OxyPlot.WP8.ConverterExtensions.ToScreenPoint(System.Windows.Point)">
  1084. <summary>
  1085. Converts a point to a ScreenPoint.
  1086. </summary>
  1087. <param name="pt">The point.</param>
  1088. <returns>A screen point.</returns>
  1089. </member>
  1090. <member name="M:OxyPlot.WP8.ConverterExtensions.ToScreenVector(System.Windows.Point)">
  1091. <summary>
  1092. Converts the specified vector to a ScreenVector.
  1093. </summary>
  1094. <param name="vector">The vector.</param>
  1095. <returns>A <see cref="T:OxyPlot.ScreenVector"/>.</returns>
  1096. </member>
  1097. <member name="M:OxyPlot.WP8.ConverterExtensions.ToScreenPointArray(System.Windows.Point[])">
  1098. <summary>
  1099. Converts a Point array to a ScreenPoint array.
  1100. </summary>
  1101. <param name="points">The points.</param>
  1102. <returns>A ScreenPoint array.</returns>
  1103. </member>
  1104. <member name="M:OxyPlot.WP8.ConverterExtensions.Convert(System.Windows.Input.Key)">
  1105. <summary>
  1106. Converts the specified key.
  1107. </summary>
  1108. <param name="k">The key to convert.</param>
  1109. <returns>The converted key.</returns>
  1110. </member>
  1111. <member name="M:OxyPlot.WP8.ConverterExtensions.ToMouseWheelEventArgs(System.Windows.Input.MouseWheelEventArgs,System.Windows.UIElement)">
  1112. <summary>
  1113. Converts <see cref="T:System.Windows.Input.MouseWheelEventArgs"/> to <see cref="T:OxyPlot.OxyMouseWheelEventArgs"/> for a mouse wheel event.
  1114. </summary>
  1115. <param name="e">The <see cref="T:System.Windows.Input.MouseWheelEventArgs"/> instance containing the event data.</param>
  1116. <param name="relativeTo">The <see cref="T:System.Windows.UIElement"/> that the event is relative to.</param>
  1117. <returns>A <see cref="T:OxyPlot.OxyMouseWheelEventArgs"/> containing the converted event arguments.</returns>
  1118. </member>
  1119. <member name="M:OxyPlot.WP8.ConverterExtensions.ToMouseDownEventArgs(System.Windows.Input.MouseButtonEventArgs,OxyPlot.OxyMouseButton,System.Windows.UIElement)">
  1120. <summary>
  1121. Converts <see cref="T:System.Windows.Input.MouseButtonEventArgs"/> to <see cref="T:OxyPlot.OxyMouseEventArgs"/> for a mouse down event.
  1122. </summary>
  1123. <param name="e">The <see cref="T:System.Windows.Input.MouseButtonEventArgs"/> instance containing the event data.</param>
  1124. <param name="button">The button.</param>
  1125. <param name="relativeTo">The <see cref="T:System.Windows.UIElement"/> that the event is relative to.</param>
  1126. <returns>A <see cref="T:OxyPlot.OxyMouseDownEventArgs"/> containing the converted event arguments.</returns>
  1127. </member>
  1128. <member name="M:OxyPlot.WP8.ConverterExtensions.ToMouseUpEventArgs(System.Windows.Input.MouseButtonEventArgs,OxyPlot.OxyMouseButton,System.Windows.UIElement)">
  1129. <summary>
  1130. Converts <see cref="T:System.Windows.Input.MouseButtonEventArgs"/> to <see cref="T:OxyPlot.OxyMouseEventArgs"/> for a mouse up event.
  1131. </summary>
  1132. <param name="e">The <see cref="T:System.Windows.Input.MouseButtonEventArgs"/> instance containing the event data.</param>
  1133. <param name="button">The button.</param>
  1134. <param name="relativeTo">The <see cref="T:System.Windows.UIElement"/> that the event is relative to.</param>
  1135. <returns>A <see cref="T:OxyPlot.OxyMouseEventArgs"/> containing the converted event arguments.</returns>
  1136. </member>
  1137. <member name="M:OxyPlot.WP8.ConverterExtensions.ToMouseEventArgs(System.Windows.Input.MouseEventArgs,System.Windows.UIElement)">
  1138. <summary>
  1139. Converts <see cref="T:System.Windows.Input.MouseEventArgs"/> to <see cref="T:OxyPlot.OxyMouseEventArgs"/> for a mouse event.
  1140. </summary>
  1141. <param name="e">The <see cref="T:System.Windows.Input.MouseEventArgs"/> instance containing the event data.</param>
  1142. <param name="relativeTo">The <see cref="T:System.Windows.UIElement"/> that the event is relative to.</param>
  1143. <returns>A <see cref="T:OxyPlot.OxyMouseEventArgs"/> containing the converted event arguments.</returns>
  1144. </member>
  1145. <member name="M:OxyPlot.WP8.ConverterExtensions.ToTouchEventArgs(System.Windows.Input.ManipulationStartedEventArgs,System.Windows.UIElement)">
  1146. <summary>
  1147. Converts <see cref="T:System.Windows.Input.ManipulationStartedEventArgs"/> to <see cref="T:OxyPlot.OxyMouseEventArgs"/> for a touch started event.
  1148. </summary>
  1149. <param name="e">The <see cref="T:System.Windows.Input.ManipulationStartedEventArgs"/> instance containing the event data.</param>
  1150. <param name="relativeTo">The <see cref="T:System.Windows.UIElement"/> that the event is relative to.</param>
  1151. <returns>A <see cref="T:OxyPlot.OxyMouseEventArgs"/> containing the converted event arguments.</returns>
  1152. </member>
  1153. <member name="M:OxyPlot.WP8.ConverterExtensions.ToTouchEventArgs(System.Windows.Input.ManipulationDeltaEventArgs,System.Windows.UIElement)">
  1154. <summary>
  1155. Converts <see cref="T:System.Windows.Input.ManipulationDeltaEventArgs"/> to <see cref="T:OxyPlot.OxyMouseEventArgs"/> for a touch delta event.
  1156. </summary>
  1157. <param name="e">The <see cref="T:System.Windows.Input.ManipulationDeltaEventArgs"/> instance containing the event data.</param>
  1158. <param name="relativeTo">The <see cref="T:System.Windows.UIElement"/> that the event is relative to.</param>
  1159. <returns>A <see cref="T:OxyPlot.OxyMouseEventArgs"/> containing the converted event arguments.</returns>
  1160. </member>
  1161. <member name="M:OxyPlot.WP8.ConverterExtensions.ToTouchEventArgs(System.Windows.Input.ManipulationCompletedEventArgs,System.Windows.UIElement)">
  1162. <summary>
  1163. Converts <see cref="T:System.Windows.Input.ManipulationCompletedEventArgs"/> to <see cref="T:OxyPlot.OxyMouseEventArgs"/> for a touch completed event.
  1164. </summary>
  1165. <param name="e">The <see cref="T:System.Windows.Input.ManipulationCompletedEventArgs"/> instance containing the event data.</param>
  1166. <param name="relativeTo">The <see cref="T:System.Windows.UIElement"/> that the event is relative to.</param>
  1167. <returns>A <see cref="T:OxyPlot.OxyMouseEventArgs"/> containing the converted event arguments.</returns>
  1168. </member>
  1169. <member name="T:OxyPlot.WP8.Keyboard">
  1170. <summary>
  1171. Provides utility methods related to the keyboard.
  1172. </summary>
  1173. </member>
  1174. <member name="M:OxyPlot.WP8.Keyboard.GetModifierKeys">
  1175. <summary>
  1176. Gets the current modifier keys.
  1177. </summary>
  1178. <returns>A <see cref="T:OxyPlot.OxyModifierKeys"/> value.</returns>
  1179. </member>
  1180. <member name="T:OxyPlot.WP8.MouseButtonHelper">
  1181. <summary>
  1182. Mouse button helper
  1183. </summary>
  1184. <remarks>See <a href="http://yinyangme.com/blog/post/The-simplest-way-to-detect-DoubleClick-in-Silverlight.aspx">The simplest way to detect DoubleClick in Silverlight</a>.</remarks>
  1185. </member>
  1186. <member name="F:OxyPlot.WP8.MouseButtonHelper.DoubleClickSpeed">
  1187. <summary>
  1188. The double click speed.
  1189. </summary>
  1190. </member>
  1191. <member name="F:OxyPlot.WP8.MouseButtonHelper.MaxMoveDistance">
  1192. <summary>
  1193. The max move distance.
  1194. </summary>
  1195. </member>
  1196. <member name="F:OxyPlot.WP8.MouseButtonHelper.lastClickTicks">
  1197. <summary>
  1198. The last click ticks.
  1199. </summary>
  1200. </member>
  1201. <member name="F:OxyPlot.WP8.MouseButtonHelper.lastPosition">
  1202. <summary>
  1203. The last position.
  1204. </summary>
  1205. </member>
  1206. <member name="F:OxyPlot.WP8.MouseButtonHelper.lastSender">
  1207. <summary>
  1208. The last sender.
  1209. </summary>
  1210. </member>
  1211. <member name="M:OxyPlot.WP8.MouseButtonHelper.IsDoubleClick(System.Object,System.Windows.Input.MouseButtonEventArgs)">
  1212. <summary>
  1213. Determines if the click in the specified <see cref="T:System.Windows.Input.MouseButtonEventArgs"/> is a double click.
  1214. </summary>
  1215. <param name="sender">The sender.</param>
  1216. <param name="e">The event arguments.</param>
  1217. <returns><c>true</c> if the click is a double click.</returns>
  1218. </member>
  1219. <member name="M:OxyPlot.WP8.MouseButtonHelper.Distance(System.Windows.Point,System.Windows.Point)">
  1220. <summary>
  1221. Calculates the distance between two points.
  1222. </summary>
  1223. <param name="pointA">The point a.</param>
  1224. <param name="pointB">The point b.</param>
  1225. <returns>The distance.</returns>
  1226. </member>
  1227. </members>
  1228. </doc>