OxyPlot.Wpf.Shared.xml 44 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923
  1. <?xml version="1.0"?>
  2. <doc>
  3. <assembly>
  4. <name>OxyPlot.Wpf.Shared</name>
  5. </assembly>
  6. <members>
  7. <member name="T:OxyPlot.Wpf.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.Wpf.OxyColorConverter.Convert(System.Object,System.Type,System.Object,System.Globalization.CultureInfo)">
  13. <summary>
  14. Converts a value.
  15. </summary>
  16. <param name="value">The value produced by the binding source.</param>
  17. <param name="targetType">The type of the binding target property.</param>
  18. <param name="parameter">The converter parameter to use.</param>
  19. <param name="culture">The culture to use in the converter.</param>
  20. <returns>A converted value. If the method returns <c>null</c>, the valid <c>null</c> value is used.</returns>
  21. </member>
  22. <member name="M:OxyPlot.Wpf.OxyColorConverter.ConvertBack(System.Object,System.Type,System.Object,System.Globalization.CultureInfo)">
  23. <summary>
  24. Converts a value.
  25. </summary>
  26. <param name="value">The value that is produced by the binding target.</param>
  27. <param name="targetType">The type to convert to.</param>
  28. <param name="parameter">The converter parameter to use.</param>
  29. <param name="culture">The culture to use in the converter.</param>
  30. <returns>A converted value. If the method returns <c>null</c>, the valid <c>null</c> value is used.</returns>
  31. </member>
  32. <member name="T:OxyPlot.Wpf.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.Wpf.TrackerControl" /> to convert BorderThickness properties to Path.StrokeThickness (double).
  37. The maximum thickness value is used.</remarks>
  38. </member>
  39. <member name="M:OxyPlot.Wpf.ThicknessConverter.Convert(System.Object,System.Type,System.Object,System.Globalization.CultureInfo)">
  40. <summary>
  41. Converts a value.
  42. </summary>
  43. <param name="value">The value produced by the binding source.</param>
  44. <param name="targetType">The type of the binding target property.</param>
  45. <param name="parameter">The converter parameter to use.</param>
  46. <param name="culture">The culture to use in the converter.</param>
  47. <returns>A converted value. If the method returns <c>null</c>, the valid <c>null</c> value is used.</returns>
  48. </member>
  49. <member name="M:OxyPlot.Wpf.ThicknessConverter.ConvertBack(System.Object,System.Type,System.Object,System.Globalization.CultureInfo)">
  50. <summary>
  51. Converts a value.
  52. </summary>
  53. <param name="value">The value that is produced by the binding target.</param>
  54. <param name="targetType">The type to convert to.</param>
  55. <param name="parameter">The converter parameter to use.</param>
  56. <param name="culture">The culture to use in the converter.</param>
  57. <returns>A converted value. If the method returns <c>null</c>, the valid <c>null</c> value is used.</returns>
  58. </member>
  59. <member name="T:OxyPlot.Wpf.ExporterExtensions">
  60. <summary>
  61. Provides extension methods for exporters.
  62. </summary>
  63. </member>
  64. <member name="M:OxyPlot.Wpf.ExporterExtensions.ExportToFile(OxyPlot.IExporter,OxyPlot.IPlotModel,System.String)">
  65. <summary>
  66. Exports the specified <see cref="T:OxyPlot.PlotModel" /> to a file.
  67. </summary>
  68. <param name="exporter">The exporter.</param>
  69. <param name="model">The model to export.</param>
  70. <param name="path">The path to the file.</param>
  71. </member>
  72. <member name="T:OxyPlot.Wpf.MoreColors">
  73. <summary>
  74. Defines additional <see cref="T:System.Windows.Media.Colors" />.
  75. </summary>
  76. </member>
  77. <member name="F:OxyPlot.Wpf.MoreColors.Undefined">
  78. <summary>
  79. The undefined color.
  80. </summary>
  81. </member>
  82. <member name="F:OxyPlot.Wpf.MoreColors.Automatic">
  83. <summary>
  84. The automatic color.
  85. </summary>
  86. </member>
  87. <member name="T:OxyPlot.Wpf.PlotCommands">
  88. <summary>
  89. Provides a standard set of commands for the <see cref="T:OxyPlot.Wpf.PlotViewBase" /> control.
  90. </summary>
  91. </member>
  92. <member name="F:OxyPlot.Wpf.PlotCommands.ResetAxes">
  93. <summary>
  94. Gets the value that represents the "Reset all axes" command.
  95. </summary>
  96. </member>
  97. <member name="T:OxyPlot.Wpf.PlotViewBase">
  98. <summary>
  99. Base class for WPF PlotView implementations.
  100. </summary>
  101. <summary>
  102. Base class for WPF PlotView implementations.
  103. </summary>
  104. <summary>
  105. Base class for WPF PlotView implementations.
  106. </summary>
  107. </member>
  108. <member name="F:OxyPlot.Wpf.PlotViewBase.PartGrid">
  109. <summary>
  110. The Grid PART constant.
  111. </summary>
  112. </member>
  113. <member name="F:OxyPlot.Wpf.PlotViewBase.grid">
  114. <summary>
  115. The grid.
  116. </summary>
  117. </member>
  118. <member name="F:OxyPlot.Wpf.PlotViewBase.plotPresenter">
  119. <summary>
  120. The plot presenter.
  121. </summary>
  122. </member>
  123. <member name="F:OxyPlot.Wpf.PlotViewBase.renderContext">
  124. <summary>
  125. The render context
  126. </summary>
  127. </member>
  128. <member name="F:OxyPlot.Wpf.PlotViewBase.modelLock">
  129. <summary>
  130. The model lock.
  131. </summary>
  132. </member>
  133. <member name="F:OxyPlot.Wpf.PlotViewBase.currentTracker">
  134. <summary>
  135. The current tracker.
  136. </summary>
  137. </member>
  138. <member name="F:OxyPlot.Wpf.PlotViewBase.currentTrackerTemplate">
  139. <summary>
  140. The current tracker template.
  141. </summary>
  142. </member>
  143. <member name="F:OxyPlot.Wpf.PlotViewBase.defaultController">
  144. <summary>
  145. The default plot controller.
  146. </summary>
  147. </member>
  148. <member name="F:OxyPlot.Wpf.PlotViewBase.isInVisualTree">
  149. <summary>
  150. Indicates whether the <see cref="T:OxyPlot.Wpf.PlotViewBase"/> was in the visual tree the last time <see cref="M:OxyPlot.Wpf.PlotViewBase.Render"/> was called.
  151. </summary>
  152. </member>
  153. <member name="F:OxyPlot.Wpf.PlotViewBase.mouseDownPoint">
  154. <summary>
  155. The mouse down point.
  156. </summary>
  157. </member>
  158. <member name="F:OxyPlot.Wpf.PlotViewBase.overlays">
  159. <summary>
  160. The overlays.
  161. </summary>
  162. </member>
  163. <member name="F:OxyPlot.Wpf.PlotViewBase.zoomControl">
  164. <summary>
  165. The zoom control.
  166. </summary>
  167. </member>
  168. <member name="M:OxyPlot.Wpf.PlotViewBase.#cctor">
  169. <summary>
  170. Initializes static members of the <see cref="T:OxyPlot.Wpf.PlotViewBase" /> class.
  171. </summary>
  172. </member>
  173. <member name="M:OxyPlot.Wpf.PlotViewBase.#ctor">
  174. <summary>
  175. Initializes a new instance of the <see cref="T:OxyPlot.Wpf.PlotViewBase" /> class.
  176. </summary>
  177. </member>
  178. <member name="P:OxyPlot.Wpf.PlotViewBase.ActualController">
  179. <summary>
  180. Gets the actual PlotView controller.
  181. </summary>
  182. <value>The actual PlotView controller.</value>
  183. </member>
  184. <member name="P:OxyPlot.Wpf.PlotViewBase.OxyPlot#IView#ActualController">
  185. <inheritdoc/>
  186. </member>
  187. <member name="P:OxyPlot.Wpf.PlotViewBase.ActualModel">
  188. <summary>
  189. Gets the actual model.
  190. </summary>
  191. <value>The actual model.</value>
  192. </member>
  193. <member name="P:OxyPlot.Wpf.PlotViewBase.OxyPlot#IView#ActualModel">
  194. <inheritdoc/>
  195. </member>
  196. <member name="P:OxyPlot.Wpf.PlotViewBase.ClientArea">
  197. <summary>
  198. Gets the coordinates of the client area of the view.
  199. </summary>
  200. </member>
  201. <member name="P:OxyPlot.Wpf.PlotViewBase.TrackerDefinitions">
  202. <summary>
  203. Gets the tracker definitions.
  204. </summary>
  205. <value>The tracker definitions.</value>
  206. </member>
  207. <member name="M:OxyPlot.Wpf.PlotViewBase.HideTracker">
  208. <summary>
  209. Hides the tracker.
  210. </summary>
  211. </member>
  212. <member name="M:OxyPlot.Wpf.PlotViewBase.HideZoomRectangle">
  213. <summary>
  214. Hides the zoom rectangle.
  215. </summary>
  216. </member>
  217. <member name="M:OxyPlot.Wpf.PlotViewBase.InvalidatePlot(System.Boolean)">
  218. <summary>
  219. Invalidate the PlotView (not blocking the UI thread)
  220. </summary>
  221. <param name="updateData">The update Data.</param>
  222. </member>
  223. <member name="M:OxyPlot.Wpf.PlotViewBase.OnApplyTemplate">
  224. <inheritdoc/>
  225. </member>
  226. <member name="M:OxyPlot.Wpf.PlotViewBase.PanAllAxes(System.Windows.Vector)">
  227. <summary>
  228. Pans all axes.
  229. </summary>
  230. <param name="delta">The delta.</param>
  231. </member>
  232. <member name="M:OxyPlot.Wpf.PlotViewBase.ResetAllAxes">
  233. <summary>
  234. Resets all axes.
  235. </summary>
  236. </member>
  237. <member name="M:OxyPlot.Wpf.PlotViewBase.SetClipboardText(System.String)">
  238. <summary>
  239. Stores text on the clipboard.
  240. </summary>
  241. <param name="text">The text.</param>
  242. </member>
  243. <member name="M:OxyPlot.Wpf.PlotViewBase.SetCursorType(OxyPlot.CursorType)">
  244. <summary>
  245. Sets the cursor type.
  246. </summary>
  247. <param name="cursorType">The cursor type.</param>
  248. </member>
  249. <member name="M:OxyPlot.Wpf.PlotViewBase.ShowTracker(OxyPlot.TrackerHitResult)">
  250. <summary>
  251. Shows the tracker.
  252. </summary>
  253. <param name="trackerHitResult">The tracker data.</param>
  254. </member>
  255. <member name="M:OxyPlot.Wpf.PlotViewBase.ShowZoomRectangle(OxyPlot.OxyRect)">
  256. <summary>
  257. Shows the zoom rectangle.
  258. </summary>
  259. <param name="r">The rectangle.</param>
  260. </member>
  261. <member name="M:OxyPlot.Wpf.PlotViewBase.ZoomAllAxes(System.Double)">
  262. <summary>
  263. Zooms all axes.
  264. </summary>
  265. <param name="factor">The zoom factor.</param>
  266. </member>
  267. <member name="M:OxyPlot.Wpf.PlotViewBase.ClearBackground">
  268. <summary>
  269. Clears the background of the plot presenter.
  270. </summary>
  271. </member>
  272. <member name="M:OxyPlot.Wpf.PlotViewBase.CreatePlotPresenter">
  273. <summary>
  274. Creates the plot presenter.
  275. </summary>
  276. <returns>The plot presenter.</returns>
  277. </member>
  278. <member name="M:OxyPlot.Wpf.PlotViewBase.CreateRenderContext">
  279. <summary>
  280. Creates the render context.
  281. </summary>
  282. <returns>The render context.</returns>
  283. </member>
  284. <member name="M:OxyPlot.Wpf.PlotViewBase.OnModelChanged">
  285. <summary>
  286. Called when the model is changed.
  287. </summary>
  288. </member>
  289. <member name="M:OxyPlot.Wpf.PlotViewBase.Render">
  290. <summary>
  291. Renders the plot model to the plot presenter.
  292. </summary>
  293. </member>
  294. <member name="M:OxyPlot.Wpf.PlotViewBase.RenderOverride">
  295. <summary>
  296. Renders the plot model to the plot presenter.
  297. </summary>
  298. </member>
  299. <member name="M:OxyPlot.Wpf.PlotViewBase.UpdateDpi">
  300. <summary>
  301. Updates the DPI scale of the render context.
  302. </summary>
  303. <returns>The DPI scale.</returns>
  304. </member>
  305. <member name="M:OxyPlot.Wpf.PlotViewBase.ModelChanged(System.Windows.DependencyObject,System.Windows.DependencyPropertyChangedEventArgs)">
  306. <summary>
  307. Called when the model is changed.
  308. </summary>
  309. <param name="d">The sender.</param>
  310. <param name="e">The <see cref="T:System.Windows.DependencyPropertyChangedEventArgs" /> instance containing the event data.</param>
  311. </member>
  312. <member name="M:OxyPlot.Wpf.PlotViewBase.BeginInvoke(System.Action)">
  313. <summary>
  314. Invokes the specified action on the dispatcher, if necessary.
  315. </summary>
  316. <param name="action">The action.</param>
  317. </member>
  318. <member name="M:OxyPlot.Wpf.PlotViewBase.IsInVisualTree">
  319. <summary>
  320. Gets a value indicating whether the <see cref="T:OxyPlot.Wpf.PlotViewBase"/> is connected to the visual tree.
  321. </summary>
  322. <returns><c>true</c> if the PlotViewBase is connected to the visual tree; <c>false</c> otherwise.</returns>
  323. </member>
  324. <member name="M:OxyPlot.Wpf.PlotViewBase.OnLayoutUpdated(System.Object,System.EventArgs)">
  325. <summary>
  326. This event fires every time Layout updates the layout of the trees associated with current Dispatcher.
  327. </summary>
  328. <param name="sender">The sender.</param>
  329. <param name="e">The event args.</param>
  330. </member>
  331. <member name="M:OxyPlot.Wpf.PlotViewBase.OnKeyDown(System.Windows.Input.KeyEventArgs)">
  332. <summary>
  333. Called before the <see cref="E:System.Windows.UIElement.KeyDown" /> event occurs.
  334. </summary>
  335. <param name="e">The data for the event.</param>
  336. </member>
  337. <member name="M:OxyPlot.Wpf.PlotViewBase.OnManipulationStarted(System.Windows.Input.ManipulationStartedEventArgs)">
  338. <summary>
  339. Called when the <see cref="E:System.Windows.UIElement.ManipulationStarted" /> event occurs.
  340. </summary>
  341. <param name="e">The data for the event.</param>
  342. </member>
  343. <member name="M:OxyPlot.Wpf.PlotViewBase.OnManipulationDelta(System.Windows.Input.ManipulationDeltaEventArgs)">
  344. <summary>
  345. Called when the <see cref="E:System.Windows.UIElement.ManipulationDelta" /> event occurs.
  346. </summary>
  347. <param name="e">The data for the event.</param>
  348. </member>
  349. <member name="M:OxyPlot.Wpf.PlotViewBase.OnManipulationCompleted(System.Windows.Input.ManipulationCompletedEventArgs)">
  350. <summary>
  351. Called when the <see cref="E:System.Windows.UIElement.ManipulationCompleted" /> event occurs.
  352. </summary>
  353. <param name="e">The data for the event.</param>
  354. </member>
  355. <member name="M:OxyPlot.Wpf.PlotViewBase.OnMouseWheel(System.Windows.Input.MouseWheelEventArgs)">
  356. <summary>
  357. 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.
  358. </summary>
  359. <param name="e">A <see cref="T:System.Windows.Input.MouseWheelEventArgs" /> that contains the event data.</param>
  360. </member>
  361. <member name="M:OxyPlot.Wpf.PlotViewBase.OnMouseDown(System.Windows.Input.MouseButtonEventArgs)">
  362. <summary>
  363. Invoked when an unhandled MouseDown attached event reaches an element in its route that is derived from this class. Implement this method to add class handling for this event.
  364. </summary>
  365. <param name="e">The <see cref="T:System.Windows.Input.MouseButtonEventArgs" /> that contains the event data. This event data reports details about the mouse button that was pressed and the handled state.</param>
  366. </member>
  367. <member name="M:OxyPlot.Wpf.PlotViewBase.OnMouseMove(System.Windows.Input.MouseEventArgs)">
  368. <summary>
  369. Invoked when an unhandled MouseMove attached event reaches an element in its route that is derived from this class. Implement this method to add class handling for this event.
  370. </summary>
  371. <param name="e">The <see cref="T:System.Windows.Input.MouseEventArgs" /> that contains the event data.</param>
  372. </member>
  373. <member name="M:OxyPlot.Wpf.PlotViewBase.OnMouseUp(System.Windows.Input.MouseButtonEventArgs)">
  374. <summary>
  375. Invoked when an unhandled MouseUp routed event reaches an element in its route that is derived from this class. Implement this method to add class handling for this event.
  376. </summary>
  377. <param name="e">The <see cref="T:System.Windows.Input.MouseButtonEventArgs" /> that contains the event data. The event data reports that the mouse button was released.</param>
  378. </member>
  379. <member name="M:OxyPlot.Wpf.PlotViewBase.OnMouseEnter(System.Windows.Input.MouseEventArgs)">
  380. <summary>
  381. Invoked when an unhandled <see cref="E:System.Windows.Input.Mouse.MouseEnter" /> attached event is raised on this element. Implement this method to add class handling for this event.
  382. </summary>
  383. <param name="e">The <see cref="T:System.Windows.Input.MouseEventArgs" /> that contains the event data.</param>
  384. </member>
  385. <member name="M:OxyPlot.Wpf.PlotViewBase.OnMouseLeave(System.Windows.Input.MouseEventArgs)">
  386. <summary>
  387. Invoked when an unhandled <see cref="E:System.Windows.Input.Mouse.MouseLeave" /> attached event is raised on this element. Implement this method to add class handling for this event.
  388. </summary>
  389. <param name="e">The <see cref="T:System.Windows.Input.MouseEventArgs" /> that contains the event data.</param>
  390. </member>
  391. <member name="F:OxyPlot.Wpf.PlotViewBase.ControllerProperty">
  392. <summary>
  393. Identifies the <see cref="P:OxyPlot.Wpf.PlotViewBase.Controller"/> dependency property.
  394. </summary>
  395. </member>
  396. <member name="F:OxyPlot.Wpf.PlotViewBase.DefaultTrackerTemplateProperty">
  397. <summary>
  398. Identifies the <see cref="P:OxyPlot.Wpf.PlotViewBase.DefaultTrackerTemplate"/> dependency property.
  399. </summary>
  400. </member>
  401. <member name="F:OxyPlot.Wpf.PlotViewBase.IsMouseWheelEnabledProperty">
  402. <summary>
  403. Identifies the <see cref="P:OxyPlot.Wpf.PlotViewBase.IsMouseWheelEnabled"/> dependency property.
  404. </summary>
  405. </member>
  406. <member name="F:OxyPlot.Wpf.PlotViewBase.ModelProperty">
  407. <summary>
  408. Identifies the <see cref="P:OxyPlot.Wpf.PlotViewBase.Model"/> dependency property.
  409. </summary>
  410. </member>
  411. <member name="F:OxyPlot.Wpf.PlotViewBase.PanCursorProperty">
  412. <summary>
  413. Identifies the <see cref="P:OxyPlot.Wpf.PlotViewBase.PanCursor"/> dependency property.
  414. </summary>
  415. </member>
  416. <member name="F:OxyPlot.Wpf.PlotViewBase.ZoomHorizontalCursorProperty">
  417. <summary>
  418. Identifies the <see cref="P:OxyPlot.Wpf.PlotViewBase.ZoomHorizontalCursor"/> dependency property.
  419. </summary>
  420. </member>
  421. <member name="F:OxyPlot.Wpf.PlotViewBase.ZoomRectangleCursorProperty">
  422. <summary>
  423. Identifies the <see cref="P:OxyPlot.Wpf.PlotViewBase.ZoomRectangleCursor"/> dependency property.
  424. </summary>
  425. </member>
  426. <member name="F:OxyPlot.Wpf.PlotViewBase.ZoomRectangleTemplateProperty">
  427. <summary>
  428. Identifies the <see cref="P:OxyPlot.Wpf.PlotViewBase.ZoomRectangleTemplate"/> dependency property.
  429. </summary>
  430. </member>
  431. <member name="F:OxyPlot.Wpf.PlotViewBase.ZoomVerticalCursorProperty">
  432. <summary>
  433. Identifies the <see cref="P:OxyPlot.Wpf.PlotViewBase.ZoomVerticalCursor"/> dependency property.
  434. </summary>
  435. </member>
  436. <member name="P:OxyPlot.Wpf.PlotViewBase.Controller">
  437. <summary>
  438. Gets or sets the Plot controller.
  439. </summary>
  440. <value>The Plot controller.</value>
  441. </member>
  442. <member name="P:OxyPlot.Wpf.PlotViewBase.DefaultTrackerTemplate">
  443. <summary>
  444. Gets or sets the default tracker template.
  445. </summary>
  446. </member>
  447. <member name="P:OxyPlot.Wpf.PlotViewBase.IsMouseWheelEnabled">
  448. <summary>
  449. Gets or sets a value indicating whether IsMouseWheelEnabled.
  450. </summary>
  451. </member>
  452. <member name="P:OxyPlot.Wpf.PlotViewBase.Model">
  453. <summary>
  454. Gets or sets the model.
  455. </summary>
  456. <value>The model.</value>
  457. </member>
  458. <member name="P:OxyPlot.Wpf.PlotViewBase.PanCursor">
  459. <summary>
  460. Gets or sets the pan cursor.
  461. </summary>
  462. <value>The pan cursor.</value>
  463. </member>
  464. <member name="P:OxyPlot.Wpf.PlotViewBase.ZoomHorizontalCursor">
  465. <summary>
  466. Gets or sets the horizontal zoom cursor.
  467. </summary>
  468. <value>The zoom horizontal cursor.</value>
  469. </member>
  470. <member name="P:OxyPlot.Wpf.PlotViewBase.ZoomRectangleCursor">
  471. <summary>
  472. Gets or sets the rectangle zoom cursor.
  473. </summary>
  474. <value>The zoom rectangle cursor.</value>
  475. </member>
  476. <member name="P:OxyPlot.Wpf.PlotViewBase.ZoomRectangleTemplate">
  477. <summary>
  478. Gets or sets the zoom rectangle template.
  479. </summary>
  480. <value>The zoom rectangle template.</value>
  481. </member>
  482. <member name="P:OxyPlot.Wpf.PlotViewBase.ZoomVerticalCursor">
  483. <summary>
  484. Gets or sets the vertical zoom cursor.
  485. </summary>
  486. <value>The zoom vertical cursor.</value>
  487. </member>
  488. <member name="T:OxyPlot.Wpf.TrackerControl">
  489. <summary>
  490. The tracker control.
  491. </summary>
  492. </member>
  493. <member name="F:OxyPlot.Wpf.TrackerControl.HorizontalLineVisibilityProperty">
  494. <summary>
  495. Identifies the <see cref="P:OxyPlot.Wpf.TrackerControl.HorizontalLineVisibility"/> dependency property.
  496. </summary>
  497. </member>
  498. <member name="F:OxyPlot.Wpf.TrackerControl.VerticalLineVisibilityProperty">
  499. <summary>
  500. Identifies the <see cref="P:OxyPlot.Wpf.TrackerControl.VerticalLineVisibility"/> dependency property.
  501. </summary>
  502. </member>
  503. <member name="F:OxyPlot.Wpf.TrackerControl.LineStrokeProperty">
  504. <summary>
  505. Identifies the <see cref="P:OxyPlot.Wpf.TrackerControl.LineStroke"/> dependency property.
  506. </summary>
  507. </member>
  508. <member name="F:OxyPlot.Wpf.TrackerControl.LineExtentsProperty">
  509. <summary>
  510. Identifies the <see cref="P:OxyPlot.Wpf.TrackerControl.LineExtents"/> dependency property.
  511. </summary>
  512. </member>
  513. <member name="F:OxyPlot.Wpf.TrackerControl.LineDashArrayProperty">
  514. <summary>
  515. Identifies the <see cref="P:OxyPlot.Wpf.TrackerControl.LineDashArray"/> dependency property.
  516. </summary>
  517. </member>
  518. <member name="F:OxyPlot.Wpf.TrackerControl.BorderEdgeModeProperty">
  519. <summary>
  520. Identifies the <see cref="P:OxyPlot.Wpf.TrackerControl.BorderEdgeMode"/> dependency property.
  521. </summary>
  522. </member>
  523. <member name="F:OxyPlot.Wpf.TrackerControl.ShowPointerProperty">
  524. <summary>
  525. Identifies the <see cref="P:OxyPlot.Wpf.TrackerControl.ShowPointer"/> dependency property.
  526. </summary>
  527. </member>
  528. <member name="F:OxyPlot.Wpf.TrackerControl.CornerRadiusProperty">
  529. <summary>
  530. Identifies the <see cref="P:OxyPlot.Wpf.TrackerControl.CornerRadius"/> dependency property.
  531. </summary>
  532. </member>
  533. <member name="F:OxyPlot.Wpf.TrackerControl.DistanceProperty">
  534. <summary>
  535. Identifies the <see cref="P:OxyPlot.Wpf.TrackerControl.Distance"/> dependency property.
  536. </summary>
  537. </member>
  538. <member name="F:OxyPlot.Wpf.TrackerControl.CanCenterHorizontallyProperty">
  539. <summary>
  540. Identifies the <see cref="P:OxyPlot.Wpf.TrackerControl.CanCenterHorizontally"/> dependency property.
  541. </summary>
  542. </member>
  543. <member name="F:OxyPlot.Wpf.TrackerControl.CanCenterVerticallyProperty">
  544. <summary>
  545. Identifies the <see cref="P:OxyPlot.Wpf.TrackerControl.CanCenterVertically"/> dependency property.
  546. </summary>
  547. </member>
  548. <member name="F:OxyPlot.Wpf.TrackerControl.PositionProperty">
  549. <summary>
  550. Identifies the <see cref="P:OxyPlot.Wpf.TrackerControl.Position"/> dependency property.
  551. </summary>
  552. </member>
  553. <member name="F:OxyPlot.Wpf.TrackerControl.PartPath">
  554. <summary>
  555. The path part string.
  556. </summary>
  557. </member>
  558. <member name="F:OxyPlot.Wpf.TrackerControl.PartContent">
  559. <summary>
  560. The content part string.
  561. </summary>
  562. </member>
  563. <member name="F:OxyPlot.Wpf.TrackerControl.PartContentcontainer">
  564. <summary>
  565. The content container part string.
  566. </summary>
  567. </member>
  568. <member name="F:OxyPlot.Wpf.TrackerControl.PartHorizontalline">
  569. <summary>
  570. The horizontal line part string.
  571. </summary>
  572. </member>
  573. <member name="F:OxyPlot.Wpf.TrackerControl.PartVerticalline">
  574. <summary>
  575. The vertical line part string.
  576. </summary>
  577. </member>
  578. <member name="F:OxyPlot.Wpf.TrackerControl.content">
  579. <summary>
  580. The content.
  581. </summary>
  582. </member>
  583. <member name="F:OxyPlot.Wpf.TrackerControl.horizontalLine">
  584. <summary>
  585. The horizontal line.
  586. </summary>
  587. </member>
  588. <member name="F:OxyPlot.Wpf.TrackerControl.path">
  589. <summary>
  590. The path.
  591. </summary>
  592. </member>
  593. <member name="F:OxyPlot.Wpf.TrackerControl.contentContainer">
  594. <summary>
  595. The content container.
  596. </summary>
  597. </member>
  598. <member name="F:OxyPlot.Wpf.TrackerControl.verticalLine">
  599. <summary>
  600. The vertical line.
  601. </summary>
  602. </member>
  603. <member name="M:OxyPlot.Wpf.TrackerControl.#cctor">
  604. <summary>
  605. Initializes static members of the <see cref = "T:OxyPlot.Wpf.TrackerControl" /> class.
  606. </summary>
  607. </member>
  608. <member name="P:OxyPlot.Wpf.TrackerControl.BorderEdgeMode">
  609. <summary>
  610. Gets or sets BorderEdgeMode.
  611. </summary>
  612. </member>
  613. <member name="P:OxyPlot.Wpf.TrackerControl.HorizontalLineVisibility">
  614. <summary>
  615. Gets or sets HorizontalLineVisibility.
  616. </summary>
  617. </member>
  618. <member name="P:OxyPlot.Wpf.TrackerControl.VerticalLineVisibility">
  619. <summary>
  620. Gets or sets VerticalLineVisibility.
  621. </summary>
  622. </member>
  623. <member name="P:OxyPlot.Wpf.TrackerControl.LineStroke">
  624. <summary>
  625. Gets or sets LineStroke.
  626. </summary>
  627. </member>
  628. <member name="P:OxyPlot.Wpf.TrackerControl.LineExtents">
  629. <summary>
  630. Gets or sets LineExtents.
  631. </summary>
  632. </member>
  633. <member name="P:OxyPlot.Wpf.TrackerControl.LineDashArray">
  634. <summary>
  635. Gets or sets LineDashArray.
  636. </summary>
  637. </member>
  638. <member name="P:OxyPlot.Wpf.TrackerControl.ShowPointer">
  639. <summary>
  640. Gets or sets a value indicating whether to show a 'pointer' on the border.
  641. </summary>
  642. </member>
  643. <member name="P:OxyPlot.Wpf.TrackerControl.CornerRadius">
  644. <summary>
  645. Gets or sets the corner radius (only used when ShowPoint=<c>false</c>).
  646. </summary>
  647. </member>
  648. <member name="P:OxyPlot.Wpf.TrackerControl.Distance">
  649. <summary>
  650. Gets or sets the distance of the content container from the trackers Position.
  651. </summary>
  652. </member>
  653. <member name="P:OxyPlot.Wpf.TrackerControl.CanCenterHorizontally">
  654. <summary>
  655. Gets or sets a value indicating whether the tracker can center its content box horizontally.
  656. </summary>
  657. </member>
  658. <member name="P:OxyPlot.Wpf.TrackerControl.CanCenterVertically">
  659. <summary>
  660. Gets or sets a value indicating whether the tracker can center its content box vertically.
  661. </summary>
  662. </member>
  663. <member name="P:OxyPlot.Wpf.TrackerControl.Position">
  664. <summary>
  665. Gets or sets Position of the tracker.
  666. </summary>
  667. </member>
  668. <member name="M:OxyPlot.Wpf.TrackerControl.OnApplyTemplate">
  669. <summary>
  670. When overridden in a derived class, is invoked whenever application code or internal processes call <see cref="M:System.Windows.FrameworkElement.ApplyTemplate" />.
  671. </summary>
  672. </member>
  673. <member name="M:OxyPlot.Wpf.TrackerControl.PositionChanged(System.Windows.DependencyObject,System.Windows.DependencyPropertyChangedEventArgs)">
  674. <summary>
  675. Called when the position is changed.
  676. </summary>
  677. <param name="sender">The sender.</param>
  678. <param name="e">The <see cref="T:System.Windows.DependencyPropertyChangedEventArgs" /> instance containing the event data.</param>
  679. </member>
  680. <member name="M:OxyPlot.Wpf.TrackerControl.OnPositionChanged(System.Windows.DependencyPropertyChangedEventArgs)">
  681. <summary>
  682. Called when the position is changed.
  683. </summary>
  684. <param name="dependencyPropertyChangedEventArgs">The dependency property changed event args.</param>
  685. </member>
  686. <member name="M:OxyPlot.Wpf.TrackerControl.UpdatePositionAndBorder">
  687. <summary>
  688. Update the position and border of the tracker.
  689. </summary>
  690. </member>
  691. <member name="M:OxyPlot.Wpf.TrackerControl.CreateBorderGeometry(System.Windows.HorizontalAlignment,System.Windows.VerticalAlignment,System.Double,System.Double,System.Windows.Thickness@)">
  692. <summary>
  693. Create the border geometry.
  694. </summary>
  695. <param name="ha">The horizontal alignment.</param>
  696. <param name="va">The vertical alignment.</param>
  697. <param name="width">The width.</param>
  698. <param name="height">The height.</param>
  699. <param name="margin">The margin.</param>
  700. <returns>The border geometry.</returns>
  701. </member>
  702. <member name="M:OxyPlot.Wpf.TrackerControl.CreatePointerBorderGeometry(System.Windows.HorizontalAlignment,System.Windows.VerticalAlignment,System.Double,System.Double,System.Windows.Thickness@)">
  703. <summary>
  704. Create a border geometry with a 'pointer'.
  705. </summary>
  706. <param name="ha">The horizontal alignment.</param>
  707. <param name="va">The vertical alignment.</param>
  708. <param name="width">The width.</param>
  709. <param name="height">The height.</param>
  710. <param name="margin">The margin.</param>
  711. <returns>The border geometry.</returns>
  712. </member>
  713. <member name="T:OxyPlot.Wpf.TrackerDefinition">
  714. <summary>
  715. Represents a tracker definition.
  716. </summary>
  717. <remarks>The tracker definitions make it possible to show different trackers for different series.
  718. The <see cref="P:OxyPlot.Series.Series.TrackerKey" /> property is matched with the <see cref="P:OxyPlot.Wpf.TrackerDefinition.TrackerKey" />
  719. in the TrackerDefinitions collection in the <see cref="T:OxyPlot.Wpf.PlotViewBase" /> control.</remarks>
  720. </member>
  721. <member name="F:OxyPlot.Wpf.TrackerDefinition.TrackerKeyProperty">
  722. <summary>
  723. Identifies the <see cref="P:OxyPlot.Wpf.TrackerDefinition.TrackerKey"/> dependency property.
  724. </summary>
  725. </member>
  726. <member name="F:OxyPlot.Wpf.TrackerDefinition.TrackerTemplateProperty">
  727. <summary>
  728. Identifies the <see cref="P:OxyPlot.Wpf.TrackerDefinition.TrackerTemplate"/> dependency property.
  729. </summary>
  730. </member>
  731. <member name="P:OxyPlot.Wpf.TrackerDefinition.TrackerKey">
  732. <summary>
  733. Gets or sets the tracker key.
  734. </summary>
  735. <remarks>The Plot will use this property to find the TrackerDefinition that matches the TrackerKey of the current series.</remarks>
  736. </member>
  737. <member name="P:OxyPlot.Wpf.TrackerDefinition.TrackerTemplate">
  738. <summary>
  739. Gets or sets the tracker template.
  740. </summary>
  741. <remarks>The tracker control will be added/removed from the Tracker overlay as necessary.
  742. The DataContext of the tracker will be set to a TrackerHitResult with the current tracker data.</remarks>
  743. </member>
  744. <member name="T:OxyPlot.Wpf.ConverterExtensions">
  745. <summary>
  746. Extension method used to convert to/from Windows/Windows.Media classes.
  747. </summary>
  748. </member>
  749. <member name="M:OxyPlot.Wpf.ConverterExtensions.DistanceTo(System.Windows.Point,System.Windows.Point)">
  750. <summary>
  751. Calculate the distance between two points.
  752. </summary>
  753. <param name="p1">The first point.</param>
  754. <param name="p2">The second point.</param>
  755. <returns>The distance.</returns>
  756. </member>
  757. <member name="M:OxyPlot.Wpf.ConverterExtensions.ToBrush(OxyPlot.OxyColor)">
  758. <summary>
  759. Converts an <see cref="T:OxyPlot.OxyColor" /> to a <see cref="T:System.Windows.Media.Brush" />.
  760. </summary>
  761. <param name="c">The color.</param>
  762. <returns>A <see cref="T:System.Windows.Media.SolidColorBrush" />.</returns>
  763. </member>
  764. <member name="M:OxyPlot.Wpf.ConverterExtensions.ToColor(OxyPlot.OxyColor)">
  765. <summary>
  766. Converts an <see cref="T:OxyPlot.OxyColor" /> to a <see cref="T:System.Windows.Media.Color" />.
  767. </summary>
  768. <param name="c">The color.</param>
  769. <returns>A Color.</returns>
  770. </member>
  771. <member name="M:OxyPlot.Wpf.ConverterExtensions.ToThickness(OxyPlot.OxyThickness)">
  772. <summary>
  773. Converts an OxyThickness to a Thickness.
  774. </summary>
  775. <param name="c">The thickness.</param>
  776. <returns>A <see cref="T:System.Windows.Thickness" /> instance.</returns>
  777. </member>
  778. <member name="M:OxyPlot.Wpf.ConverterExtensions.ToVector(OxyPlot.ScreenVector)">
  779. <summary>
  780. Converts a ScreenVector to a Vector.
  781. </summary>
  782. <param name="c">The c.</param>
  783. <returns>A <see cref="T:System.Windows.Vector" /> instance.</returns>
  784. </member>
  785. <member name="M:OxyPlot.Wpf.ConverterExtensions.ToHorizontalAlignment(System.Windows.HorizontalAlignment)">
  786. <summary>
  787. Converts a HorizontalAlignment to a HorizontalAlignment.
  788. </summary>
  789. <param name="alignment">The alignment.</param>
  790. <returns>A HorizontalAlignment.</returns>
  791. </member>
  792. <member name="M:OxyPlot.Wpf.ConverterExtensions.ToVerticalAlignment(System.Windows.VerticalAlignment)">
  793. <summary>
  794. Converts a HorizontalAlignment to a VerticalAlignment.
  795. </summary>
  796. <param name="alignment">The alignment.</param>
  797. <returns>A VerticalAlignment.</returns>
  798. </member>
  799. <member name="M:OxyPlot.Wpf.ConverterExtensions.ToOxyColor(System.Windows.Media.Color)">
  800. <summary>
  801. Converts a Color to an OxyColor.
  802. </summary>
  803. <param name="color">The color.</param>
  804. <returns>An OxyColor.</returns>
  805. </member>
  806. <member name="M:OxyPlot.Wpf.ConverterExtensions.ToOxyColor(System.Windows.Media.Brush)">
  807. <summary>
  808. Converts a <see cref="T:System.Windows.Media.Brush" /> to an <see cref="T:OxyPlot.OxyColor" />.
  809. </summary>
  810. <param name="brush">The brush.</param>
  811. <returns>An <see cref="T:OxyPlot.OxyColor" />.</returns>
  812. </member>
  813. <member name="M:OxyPlot.Wpf.ConverterExtensions.ToOxyThickness(System.Windows.Thickness)">
  814. <summary>
  815. Converts a Thickness to an <see cref="T:OxyPlot.OxyThickness" />.
  816. </summary>
  817. <param name="t">The thickness.</param>
  818. <returns>An <see cref="T:OxyPlot.OxyThickness" />.</returns>
  819. </member>
  820. <member name="M:OxyPlot.Wpf.ConverterExtensions.ToScreenPoint(System.Windows.Point)">
  821. <summary>
  822. Converts a <see cref="T:System.Windows.Point" /> to a <see cref="T:OxyPlot.ScreenPoint" />.
  823. </summary>
  824. <param name="pt">The point.</param>
  825. <returns>A <see cref="T:OxyPlot.ScreenPoint" />.</returns>
  826. </member>
  827. <member name="M:OxyPlot.Wpf.ConverterExtensions.ToScreenPointArray(System.Windows.Point[])">
  828. <summary>
  829. Converts a Point array to a ScreenPoint array.
  830. </summary>
  831. <param name="points">The points.</param>
  832. <returns>A ScreenPoint array.</returns>
  833. </member>
  834. <member name="M:OxyPlot.Wpf.ConverterExtensions.ToScreenVector(System.Windows.Vector)">
  835. <summary>
  836. Converts the specified vector to a ScreenVector.
  837. </summary>
  838. <param name="vector">The vector.</param>
  839. <returns>A <see cref="T:OxyPlot.ScreenVector" />.</returns>
  840. </member>
  841. <member name="M:OxyPlot.Wpf.ConverterExtensions.Convert(System.Windows.Input.Key)">
  842. <summary>
  843. Converts the specified key.
  844. </summary>
  845. <param name="k">The key to convert.</param>
  846. <returns>The converted key.</returns>
  847. </member>
  848. <member name="M:OxyPlot.Wpf.ConverterExtensions.Convert(System.Windows.Input.MouseButton)">
  849. <summary>
  850. Converts the specified button.
  851. </summary>
  852. <param name="button">The button to convert.</param>
  853. <returns>The converted mouse button.</returns>
  854. </member>
  855. <member name="M:OxyPlot.Wpf.ConverterExtensions.ToMouseWheelEventArgs(System.Windows.Input.MouseWheelEventArgs,System.Windows.IInputElement)">
  856. <summary>
  857. Converts <see cref="T:System.Windows.Input.MouseWheelEventArgs" /> to <see cref="T:OxyPlot.OxyMouseWheelEventArgs" /> for a mouse wheel event.
  858. </summary>
  859. <param name="e">The <see cref="T:System.Windows.Input.MouseWheelEventArgs" /> instance containing the event data.</param>
  860. <param name="relativeTo">The <see cref="T:System.Windows.IInputElement" /> that the event is relative to.</param>
  861. <returns>A <see cref="T:OxyPlot.OxyMouseWheelEventArgs" /> containing the converted event arguments.</returns>
  862. </member>
  863. <member name="M:OxyPlot.Wpf.ConverterExtensions.ToMouseDownEventArgs(System.Windows.Input.MouseButtonEventArgs,System.Windows.IInputElement)">
  864. <summary>
  865. Converts <see cref="T:System.Windows.Input.MouseButtonEventArgs" /> to <see cref="T:OxyPlot.OxyMouseEventArgs" /> for a mouse down event.
  866. </summary>
  867. <param name="e">The <see cref="T:System.Windows.Input.MouseButtonEventArgs" /> instance containing the event data.</param>
  868. <param name="relativeTo">The <see cref="T:System.Windows.IInputElement" /> that the event is relative to.</param>
  869. <returns>A <see cref="T:OxyPlot.OxyMouseEventArgs" /> containing the converted event arguments.</returns>
  870. </member>
  871. <member name="M:OxyPlot.Wpf.ConverterExtensions.ToMouseReleasedEventArgs(System.Windows.Input.MouseButtonEventArgs,System.Windows.IInputElement)">
  872. <summary>
  873. Converts <see cref="T:System.Windows.Input.MouseButtonEventArgs" /> to <see cref="T:OxyPlot.OxyMouseEventArgs" /> for a mouse up event.
  874. </summary>
  875. <param name="e">The <see cref="T:System.Windows.Input.MouseButtonEventArgs" /> instance containing the event data.</param>
  876. <param name="relativeTo">The <see cref="T:System.Windows.IInputElement" /> that the event is relative to.</param>
  877. <returns>A <see cref="T:OxyPlot.OxyMouseEventArgs" /> containing the converted event arguments.</returns>
  878. </member>
  879. <member name="M:OxyPlot.Wpf.ConverterExtensions.ToMouseEventArgs(System.Windows.Input.MouseEventArgs,System.Windows.IInputElement)">
  880. <summary>
  881. Converts <see cref="T:System.Windows.Input.MouseEventArgs" /> to <see cref="T:OxyPlot.OxyMouseEventArgs" /> for a mouse event.
  882. </summary>
  883. <param name="e">The <see cref="T:System.Windows.Input.MouseEventArgs" /> instance containing the event data.</param>
  884. <param name="relativeTo">The <see cref="T:System.Windows.IInputElement" /> that the event is relative to.</param>
  885. <returns>A <see cref="T:OxyPlot.OxyMouseEventArgs" /> containing the converted event arguments.</returns>
  886. </member>
  887. <member name="M:OxyPlot.Wpf.ConverterExtensions.ToTouchEventArgs(System.Windows.Input.ManipulationStartedEventArgs,System.Windows.UIElement)">
  888. <summary>
  889. Converts <see cref="T:System.Windows.Input.ManipulationStartedEventArgs" /> to <see cref="T:OxyPlot.OxyMouseEventArgs" /> for a touch started event.
  890. </summary>
  891. <param name="e">The <see cref="T:System.Windows.Input.ManipulationStartedEventArgs" /> instance containing the event data.</param>
  892. <param name="relativeTo">The <see cref="T:System.Windows.UIElement" /> that the event is relative to.</param>
  893. <returns>A <see cref="T:OxyPlot.OxyMouseEventArgs" /> containing the converted event arguments.</returns>
  894. </member>
  895. <member name="M:OxyPlot.Wpf.ConverterExtensions.ToTouchEventArgs(System.Windows.Input.ManipulationDeltaEventArgs,System.Windows.UIElement)">
  896. <summary>
  897. Converts <see cref="T:System.Windows.Input.ManipulationDeltaEventArgs" /> to <see cref="T:OxyPlot.OxyMouseEventArgs" /> for a touch delta event.
  898. </summary>
  899. <param name="e">The <see cref="T:System.Windows.Input.ManipulationDeltaEventArgs" /> instance containing the event data.</param>
  900. <param name="relativeTo">The <see cref="T:System.Windows.UIElement" /> that the event is relative to.</param>
  901. <returns>A <see cref="T:OxyPlot.OxyMouseEventArgs" /> containing the converted event arguments.</returns>
  902. </member>
  903. <member name="M:OxyPlot.Wpf.ConverterExtensions.ToTouchEventArgs(System.Windows.Input.ManipulationCompletedEventArgs,System.Windows.UIElement)">
  904. <summary>
  905. Converts <see cref="T:System.Windows.Input.ManipulationCompletedEventArgs" /> to <see cref="T:OxyPlot.OxyMouseEventArgs" /> for a touch completed event.
  906. </summary>
  907. <param name="e">The <see cref="T:System.Windows.Input.ManipulationCompletedEventArgs" /> instance containing the event data.</param>
  908. <param name="relativeTo">The <see cref="T:System.Windows.UIElement" /> that the event is relative to.</param>
  909. <returns>A <see cref="T:OxyPlot.OxyMouseEventArgs" /> containing the converted event arguments.</returns>
  910. </member>
  911. <member name="T:OxyPlot.Wpf.Keyboard">
  912. <summary>
  913. Provides utility methods related to the keyboard.
  914. </summary>
  915. </member>
  916. <member name="M:OxyPlot.Wpf.Keyboard.GetModifierKeys">
  917. <summary>
  918. Gets the current modifier keys.
  919. </summary>
  920. <returns>A <see cref="T:OxyPlot.OxyModifierKeys" /> value.</returns>
  921. </member>
  922. </members>
  923. </doc>