PageRenderTime 59ms CodeModel.GetById 20ms RepoModel.GetById 0ms app.codeStats 1ms

/V4/Lib/Silverlight/SilverlightToolkit/System.Windows.Controls.DataVisualization.Toolkit.xml

#
XML | 1208 lines | 1208 code | 0 blank | 0 comment | 0 complexity | cc31bace06dd5b1459cce0b1bf853407 MD5 | raw file
  1. <?xml version="1.0"?>
  2. <doc>
  3. <assembly>
  4. <name>System.Windows.Controls.DataVisualization.Toolkit</name>
  5. </assembly>
  6. <members>
  7. <member name="T:System.Windows.Controls.CollectionHelper">
  8. <summary>
  9. A set of extension methods for manipulating collections.
  10. </summary>
  11. <QualityBand>Experimental</QualityBand>
  12. </member>
  13. <member name="M:System.Windows.Controls.CollectionHelper.IsReadOnly(System.Collections.IEnumerable)">
  14. <summary>
  15. Returns a value indicating whether a collection is read-only.
  16. </summary>
  17. <param name="collection">The collection to examine.</param>
  18. <returns>A value indicating whether a collection is read-only.</returns>
  19. </member>
  20. <member name="M:System.Windows.Controls.CollectionHelper.CanInsert(System.Collections.IEnumerable,System.Object)">
  21. <summary>
  22. Returns a value Indicating whether an item can be inserted in a
  23. collection.
  24. </summary>
  25. <param name="collection">The collection.</param>
  26. <param name="item">The item to be inserted.</param>
  27. <returns>A value Indicating whether an item can be inserted in a
  28. collection.</returns>
  29. </member>
  30. <member name="M:System.Windows.Controls.CollectionHelper.Insert(System.Collections.IEnumerable,System.Int32,System.Object)">
  31. <summary>
  32. Inserts an item into the collection at an index.
  33. </summary>
  34. <param name="collection">The collection.</param>
  35. <param name="index">The index at which to insert the item.</param>
  36. <param name="item">The item to be inserted.</param>
  37. </member>
  38. <member name="M:System.Windows.Controls.CollectionHelper.Count(System.Collections.IEnumerable)">
  39. <summary>
  40. Gets the number of items in the collection.
  41. </summary>
  42. <param name="collection">The collection.</param>
  43. <returns>The number of items in the collection.</returns>
  44. </member>
  45. <member name="M:System.Windows.Controls.CollectionHelper.Add(System.Collections.IEnumerable,System.Object)">
  46. <summary>
  47. Adds an item to the collection.
  48. </summary>
  49. <param name="collection">The collection.</param>
  50. <param name="item">The item to be added.</param>
  51. </member>
  52. <member name="M:System.Windows.Controls.CollectionHelper.Remove(System.Collections.IEnumerable,System.Object)">
  53. <summary>
  54. Removes an item from the collection.
  55. </summary>
  56. <param name="collection">The collection.</param>
  57. <param name="item">The item to be removed.</param>
  58. </member>
  59. <member name="M:System.Windows.Controls.CollectionHelper.RemoveAt(System.Collections.IEnumerable,System.Int32)">
  60. <summary>
  61. Removes an item at a given index from the collection.
  62. </summary>
  63. <param name="collection">The collection.</param>
  64. <param name="index">The index of the item to be removed.</param>
  65. </member>
  66. <member name="T:System.Windows.Controls.DesignerProperties">
  67. <summary>
  68. Provides a custom implementation of DesignerProperties.GetIsInDesignMode
  69. to work around an issue.
  70. </summary>
  71. </member>
  72. <member name="M:System.Windows.Controls.DesignerProperties.GetIsInDesignMode(System.Windows.DependencyObject)">
  73. <summary>
  74. Returns whether the control is in design mode (running under Blend
  75. or Visual Studio).
  76. </summary>
  77. <param name="element">The element from which the property value is
  78. read.</param>
  79. <returns>True if in design mode.</returns>
  80. </member>
  81. <member name="F:System.Windows.Controls.DesignerProperties._isInDesignMode">
  82. <summary>
  83. Stores the computed InDesignMode value.
  84. </summary>
  85. </member>
  86. <member name="T:System.Windows.Controls.EnumerableExtensions">
  87. <summary>
  88. A set of extension methods for the sequence class.
  89. </summary>
  90. </member>
  91. <member name="M:System.Windows.Controls.EnumerableExtensions.Iterate``1(``0,System.Func{``0,``0})">
  92. <summary>
  93. Produces a sequence of items using a seed value and iteration
  94. method.
  95. </summary>
  96. <typeparam name="T">The type of the sequence.</typeparam>
  97. <param name="value">The initial value.</param>
  98. <param name="next">The iteration function.</param>
  99. <returns>A sequence of items using a seed value and iteration
  100. method.</returns>
  101. </member>
  102. <member name="M:System.Windows.Controls.EnumerableExtensions.Prepend``1(System.Collections.Generic.IEnumerable{``0},``0)">
  103. <summary>
  104. Prepend an item to a sequence.
  105. </summary>
  106. <typeparam name="T">The type of the sequence.</typeparam>
  107. <param name="that">The sequence to append the item to.</param>
  108. <param name="value">The item to append to the sequence.</param>
  109. <returns>A new sequence.</returns>
  110. </member>
  111. <member name="M:System.Windows.Controls.EnumerableExtensions.Zip``3(System.Collections.Generic.IEnumerable{``0},System.Collections.Generic.IEnumerable{``1},System.Func{``0,``1,``2})">
  112. <summary>
  113. Accepts two sequences and applies a function to the corresponding
  114. values in the two sequences.
  115. </summary>
  116. <typeparam name="T0">The type of the first sequence.</typeparam>
  117. <typeparam name="T1">The type of the second sequence.</typeparam>
  118. <typeparam name="R">The return type of the function.</typeparam>
  119. <param name="enumerable0">The first sequence.</param>
  120. <param name="enumerable1">The second sequence.</param>
  121. <param name="func">The function to apply to the corresponding values
  122. from the two sequences.</param>
  123. <returns>A sequence of transformed values from both sequences.</returns>
  124. </member>
  125. <member name="M:System.Windows.Controls.EnumerableExtensions.MaxOrNull``1(System.Collections.Generic.IEnumerable{``0},System.Func{``0,System.IComparable})">
  126. <summary>
  127. Returns the maximum value in the stream based on the result of a
  128. project function.
  129. </summary>
  130. <typeparam name="T">The stream type.</typeparam>
  131. <param name="that">The stream.</param>
  132. <param name="projectionFunction">The function that transforms the
  133. item.</param>
  134. <returns>The maximum value or null.</returns>
  135. </member>
  136. <member name="M:System.Windows.Controls.EnumerableExtensions.MaxOrNullable``1(System.Collections.Generic.IEnumerable{``0})">
  137. <summary>
  138. Returns the maximum value or null if sequence is empty.
  139. </summary>
  140. <typeparam name="T">The type of the sequence.</typeparam>
  141. <param name="that">The sequence to retrieve the maximum value from.
  142. </param>
  143. <returns>The maximum value or null.</returns>
  144. </member>
  145. <member name="M:System.Windows.Controls.EnumerableExtensions.MinOrNullable``1(System.Collections.Generic.IEnumerable{``0})">
  146. <summary>
  147. Returns the minimum value or null if sequence is empty.
  148. </summary>
  149. <typeparam name="T">The type of the sequence.</typeparam>
  150. <param name="that">The sequence to retrieve the minimum value from.
  151. </param>
  152. <returns>The minimum value or null.</returns>
  153. </member>
  154. <member name="T:System.Windows.Controls.WeakEventListener`3">
  155. <summary>
  156. Implements a weak event listener that allows the owner to be garbage
  157. collected if its only remaining link is an event handler.
  158. </summary>
  159. <typeparam name="TInstance">Type of instance listening for the event.</typeparam>
  160. <typeparam name="TSource">Type of source for the event.</typeparam>
  161. <typeparam name="TEventArgs">Type of event arguments for the event.</typeparam>
  162. </member>
  163. <member name="F:System.Windows.Controls.WeakEventListener`3._weakInstance">
  164. <summary>
  165. WeakReference to the instance listening for the event.
  166. </summary>
  167. </member>
  168. <member name="M:System.Windows.Controls.WeakEventListener`3.#ctor(`0)">
  169. <summary>
  170. Initializes a new instances of the WeakEventListener class.
  171. </summary>
  172. <param name="instance">Instance subscribing to the event.</param>
  173. </member>
  174. <member name="M:System.Windows.Controls.WeakEventListener`3.OnEvent(`1,`2)">
  175. <summary>
  176. Handler for the subscribed event calls OnEventAction to handle it.
  177. </summary>
  178. <param name="source">Event source.</param>
  179. <param name="eventArgs">Event arguments.</param>
  180. </member>
  181. <member name="M:System.Windows.Controls.WeakEventListener`3.Detach">
  182. <summary>
  183. Detaches from the subscribed event.
  184. </summary>
  185. </member>
  186. <member name="P:System.Windows.Controls.WeakEventListener`3.OnEventAction">
  187. <summary>
  188. Gets or sets the method to call when the event fires.
  189. </summary>
  190. </member>
  191. <member name="P:System.Windows.Controls.WeakEventListener`3.OnDetachAction">
  192. <summary>
  193. Gets or sets the method to call when detaching from the event.
  194. </summary>
  195. </member>
  196. <member name="T:System.Windows.Controls.DataVisualization.AggregatedObservableCollection`1">
  197. <summary>
  198. Aggregated observable collection.
  199. </summary>
  200. <typeparam name="T">The type of the items in the observable collections.
  201. </typeparam>
  202. </member>
  203. <member name="T:System.Windows.Controls.DataVisualization.ReadOnlyObservableCollection`1">
  204. <summary>
  205. An observable collection that can only be written to by internal
  206. classes.
  207. </summary>
  208. <typeparam name="T">The type of object in the observable collection.
  209. </typeparam>
  210. </member>
  211. <member name="T:System.Windows.Controls.DataVisualization.NoResetObservableCollection`1">
  212. <summary>
  213. An observable collection that cannot be reset. When clear is called
  214. items are removed individually, giving listeners the chance to detect
  215. each remove event and perform operations such as unhooking event
  216. handlers.
  217. </summary>
  218. <typeparam name="T">The type of item in the collection.</typeparam>
  219. </member>
  220. <member name="M:System.Windows.Controls.DataVisualization.NoResetObservableCollection`1.#ctor">
  221. <summary>
  222. Instantiates a new instance of the NoResetObservableCollection
  223. class.
  224. </summary>
  225. </member>
  226. <member name="M:System.Windows.Controls.DataVisualization.NoResetObservableCollection`1.ClearItems">
  227. <summary>
  228. Clears all items in the collection by removing them individually.
  229. </summary>
  230. </member>
  231. <member name="M:System.Windows.Controls.DataVisualization.ReadOnlyObservableCollection`1.Mutate(System.Action{System.Windows.Controls.DataVisualization.ReadOnlyObservableCollection{`0}})">
  232. <summary>
  233. A method that mutates the collection.
  234. </summary>
  235. <param name="action">The action to mutate the collection.</param>
  236. </member>
  237. <member name="M:System.Windows.Controls.DataVisualization.ReadOnlyObservableCollection`1.RemoveItem(System.Int32)">
  238. <summary>
  239. Removes an item from the collection at an index.
  240. </summary>
  241. <param name="index">The index to remove.</param>
  242. </member>
  243. <member name="M:System.Windows.Controls.DataVisualization.ReadOnlyObservableCollection`1.SetItem(System.Int32,`0)">
  244. <summary>
  245. Sets an item at a particular location in the collection.
  246. </summary>
  247. <param name="index">The location to set an item.</param>
  248. <param name="item">The item to set.</param>
  249. </member>
  250. <member name="M:System.Windows.Controls.DataVisualization.ReadOnlyObservableCollection`1.InsertItem(System.Int32,`0)">
  251. <summary>
  252. Inserts an item in the collection.
  253. </summary>
  254. <param name="index">The index at which to insert the item.</param>
  255. <param name="item">The item to insert.</param>
  256. </member>
  257. <member name="M:System.Windows.Controls.DataVisualization.ReadOnlyObservableCollection`1.ClearItems">
  258. <summary>
  259. Clears the items from the collection.
  260. </summary>
  261. </member>
  262. <member name="P:System.Windows.Controls.DataVisualization.ReadOnlyObservableCollection`1.IsMutating">
  263. <summary>
  264. Gets or sets a value indicating whether the owner is writing to the
  265. collection.
  266. </summary>
  267. </member>
  268. <member name="M:System.Windows.Controls.DataVisualization.AggregatedObservableCollection`1.#ctor">
  269. <summary>
  270. Initializes a new instance of an aggregated observable collection.
  271. </summary>
  272. </member>
  273. <member name="M:System.Windows.Controls.DataVisualization.AggregatedObservableCollection`1.ChildCollectionsCollectionChanged(System.Object,System.Collections.Specialized.NotifyCollectionChangedEventArgs)">
  274. <summary>
  275. Rebuilds the list if a collection changes.
  276. </summary>
  277. <param name="sender">The source of the event.</param>
  278. <param name="e">Information about the event.</param>
  279. </member>
  280. <member name="M:System.Windows.Controls.DataVisualization.AggregatedObservableCollection`1.ChildCollectionCollectionChanged(System.Object,System.Collections.Specialized.NotifyCollectionChangedEventArgs)">
  281. <summary>
  282. Synchronizes the collection with changes made in a child collection.
  283. </summary>
  284. <param name="sender">The source of the event.</param>
  285. <param name="e">Information about the event.</param>
  286. </member>
  287. <member name="M:System.Windows.Controls.DataVisualization.AggregatedObservableCollection`1.GetStartingIndexOfCollectionAtIndex(System.Int32)">
  288. <summary>
  289. Returns the starting index of a collection in the aggregate
  290. collection.
  291. </summary>
  292. <param name="index">The starting index of a collection.</param>
  293. <returns>The starting index of the collection in the aggregate
  294. collection.</returns>
  295. </member>
  296. <member name="M:System.Windows.Controls.DataVisualization.AggregatedObservableCollection`1.Rebuild">
  297. <summary>
  298. Rebuild the list in the correct order when a child collection
  299. changes.
  300. </summary>
  301. </member>
  302. <member name="P:System.Windows.Controls.DataVisualization.AggregatedObservableCollection`1.ChildCollections">
  303. <summary>
  304. Gets child collections of the aggregated collection.
  305. </summary>
  306. </member>
  307. <member name="T:System.Windows.Controls.DataVisualization.Charting.IAnchoredToOrigin">
  308. <summary>
  309. Range axes look for this interface on series to determine whether to
  310. anchor the origin to the bottom or top of the screen where possible.
  311. </summary>
  312. <remarks>
  313. Implementing this interface ensures that value margins will not cause
  314. an origin to float above the bottom or top of the screen if no
  315. data exists below or above.
  316. </remarks>
  317. </member>
  318. <member name="P:System.Windows.Controls.DataVisualization.Charting.IAnchoredToOrigin.AnchoredAxis">
  319. <summary>
  320. Gets the axis to which the data is anchored.
  321. </summary>
  322. </member>
  323. <member name="T:System.Windows.Controls.DataVisualization.Charting.DataPointSeriesDragDropTarget">
  324. <summary>
  325. A control that enabled drag and drop operations on an Chart.
  326. </summary>
  327. <QualityBand>Experimental</QualityBand>
  328. </member>
  329. <member name="M:System.Windows.Controls.DataVisualization.Charting.DataPointSeriesDragDropTarget.#ctor">
  330. <summary>
  331. Initializes a new instance of the DataPointSeriesDragDropTarget.
  332. </summary>
  333. </member>
  334. <member name="M:System.Windows.Controls.DataVisualization.Charting.DataPointSeriesDragDropTarget.OnContentChanged(System.Object,System.Object)">
  335. <summary>
  336. Ensures that the content property is set to a Chart object.
  337. </summary>
  338. <param name="oldContent">The old value.</param>
  339. <param name="newContent">The new value.</param>
  340. </member>
  341. <member name="M:System.Windows.Controls.DataVisualization.Charting.DataPointSeriesDragDropTarget.CanAddItem(System.Windows.Controls.DataVisualization.Charting.DataPointSeries,System.Object)">
  342. <summary>
  343. Returns a value indicating whether an item can be added to the
  344. items control.
  345. </summary>
  346. <param name="itemsControl">The items control.</param>
  347. <param name="data">The data to be added.</param>
  348. <returns>A value indicating whether an item can be added to the
  349. items control.</returns>
  350. </member>
  351. <member name="M:System.Windows.Controls.DataVisualization.Charting.DataPointSeriesDragDropTarget.GetItemCount(System.Windows.Controls.DataVisualization.Charting.DataPointSeries)">
  352. <summary>
  353. Gets the number of items in an items control.
  354. </summary>
  355. <param name="itemsControl">The items control.</param>
  356. <returns>The number of items in the items control.</returns>
  357. </member>
  358. <member name="M:System.Windows.Controls.DataVisualization.Charting.DataPointSeriesDragDropTarget.ContainerFromIndex(System.Windows.Controls.DataVisualization.Charting.DataPointSeries,System.Int32)">
  359. <summary>
  360. Retrieves the item container at a given index.
  361. </summary>
  362. <param name="itemsControl">The items control.</param>
  363. <param name="index">The index at which to retrieve the container.
  364. </param>
  365. <returns>The item container at a given index.</returns>
  366. </member>
  367. <member name="M:System.Windows.Controls.DataVisualization.Charting.DataPointSeriesDragDropTarget.IndexFromContainer(System.Windows.Controls.DataVisualization.Charting.DataPointSeries,System.Windows.Controls.DataVisualization.Charting.DataPoint)">
  368. <summary>
  369. Retrieves the index of an item container.
  370. </summary>
  371. <param name="itemsControl">The items control.</param>
  372. <param name="itemContainer">The item container.</param>
  373. <returns>The index of an item container.</returns>
  374. </member>
  375. <member name="M:System.Windows.Controls.DataVisualization.Charting.DataPointSeriesDragDropTarget.GetItemsHost(System.Windows.Controls.DataVisualization.Charting.DataPointSeries)">
  376. <summary>
  377. Retrieves the items host for a given items control.
  378. </summary>
  379. <param name="itemsControl">The items control.</param>
  380. <returns>The items host for a given items control.</returns>
  381. </member>
  382. <member name="M:System.Windows.Controls.DataVisualization.Charting.DataPointSeriesDragDropTarget.CanRemove(System.Windows.Controls.DataVisualization.Charting.DataPointSeries)">
  383. <summary>
  384. Returns a value indicating whether an item can be removed from the
  385. items control.
  386. </summary>
  387. <param name="itemsControl">The items control.</param>
  388. <returns>A value indicating whether an item can be removed from the
  389. items control.</returns>
  390. </member>
  391. <member name="M:System.Windows.Controls.DataVisualization.Charting.DataPointSeriesDragDropTarget.AddItem(System.Windows.Controls.DataVisualization.Charting.DataPointSeries,System.Object)">
  392. <summary>
  393. Adds an item to an items control.
  394. </summary>
  395. <param name="itemsControl">The items control.</param>
  396. <param name="data">The data to be inserted.</param>
  397. </member>
  398. <member name="M:System.Windows.Controls.DataVisualization.Charting.DataPointSeriesDragDropTarget.RemoveItem(System.Windows.Controls.DataVisualization.Charting.DataPointSeries,System.Object)">
  399. <summary>
  400. Removes an item from an items control.
  401. </summary>
  402. <param name="itemsControl">The items control.</param>
  403. <param name="data">The data to be removed.</param>
  404. </member>
  405. <member name="M:System.Windows.Controls.DataVisualization.Charting.DataPointSeriesDragDropTarget.InsertItem(System.Windows.Controls.DataVisualization.Charting.DataPointSeries,System.Int32,System.Object)">
  406. <summary>
  407. Inserts an item into an items control.
  408. </summary>
  409. <param name="itemsControl">The items control.</param>
  410. <param name="index">The index at which to insert the item.</param>
  411. <param name="data">The data to be inserted.</param>
  412. </member>
  413. <member name="M:System.Windows.Controls.DataVisualization.Charting.DataPointSeriesDragDropTarget.IsItemContainerOfItemsControl(System.Windows.Controls.DataVisualization.Charting.DataPointSeries,System.Windows.DependencyObject)">
  414. <summary>
  415. Returns a value indicating whether a container belongs to an items
  416. control.
  417. </summary>
  418. <param name="itemsControl">The items control.</param>
  419. <param name="itemContainer">The item container.</param>
  420. <returns>A value indicating whether a container belongs to an items
  421. control.</returns>
  422. </member>
  423. <member name="M:System.Windows.Controls.DataVisualization.Charting.DataPointSeriesDragDropTarget.ItemFromContainer(System.Windows.Controls.DataVisualization.Charting.DataPointSeries,System.Windows.Controls.DataVisualization.Charting.DataPoint)">
  424. <summary>
  425. Gets the item from an item container.
  426. </summary>
  427. <param name="itemsControl">The items control.</param>
  428. <param name="itemContainer">The item container.</param>
  429. <returns>The data contained by the item container.</returns>
  430. </member>
  431. <member name="M:System.Windows.Controls.DataVisualization.Charting.DataPointSeriesDragDropTarget.GetDropTarget(Microsoft.Windows.DragEventArgs)">
  432. <summary>
  433. Detects whether an item is being dragged over a legend item and
  434. selects the owner series as the drop target.
  435. </summary>
  436. <param name="args">Information about the drag event.</param>
  437. <returns>The drop target.</returns>
  438. </member>
  439. <member name="M:System.Windows.Controls.DataVisualization.Charting.DataPointSeriesDragDropTarget.GetItemsControlAncestor(System.Windows.DependencyObject)">
  440. <summary>
  441. Retrieves the data point series that contains a dependency object.
  442. </summary>
  443. <param name="dependencyObject">The dependency object.</param>
  444. <returns>The data point series ancestor of a given object.</returns>
  445. </member>
  446. <member name="P:System.Windows.Controls.DataVisualization.Charting.DataPointSeriesDragDropTarget.Chart">
  447. <summary>
  448. Gets the chart object.
  449. </summary>
  450. </member>
  451. <member name="T:System.Windows.Controls.DataVisualization.Charting.AreaDataPoint">
  452. <summary>
  453. Represents a data point used for an area series.
  454. </summary>
  455. <QualityBand>Preview</QualityBand>
  456. </member>
  457. <member name="T:System.Windows.Controls.DataVisualization.Charting.DataPoint">
  458. <summary>
  459. Represents a control that displays a data point.
  460. </summary>
  461. <QualityBand>Preview</QualityBand>
  462. </member>
  463. <member name="F:System.Windows.Controls.DataVisualization.Charting.DataPoint.GroupCommonStates">
  464. <summary>
  465. Common state group.
  466. </summary>
  467. </member>
  468. <member name="F:System.Windows.Controls.DataVisualization.Charting.DataPoint.StateCommonNormal">
  469. <summary>
  470. Normal state of the Common group.
  471. </summary>
  472. </member>
  473. <member name="F:System.Windows.Controls.DataVisualization.Charting.DataPoint.StateCommonMouseOver">
  474. <summary>
  475. MouseOver state of the Common group.
  476. </summary>
  477. </member>
  478. <member name="F:System.Windows.Controls.DataVisualization.Charting.DataPoint.GroupSelectionStates">
  479. <summary>
  480. Selection state group.
  481. </summary>
  482. </member>
  483. <member name="F:System.Windows.Controls.DataVisualization.Charting.DataPoint.StateSelectionUnselected">
  484. <summary>
  485. Unselected state of the Selection group.
  486. </summary>
  487. </member>
  488. <member name="F:System.Windows.Controls.DataVisualization.Charting.DataPoint.StateSelectionSelected">
  489. <summary>
  490. Selected state of the Selection group.
  491. </summary>
  492. </member>
  493. <member name="F:System.Windows.Controls.DataVisualization.Charting.DataPoint.GroupRevealStates">
  494. <summary>
  495. Reveal state group.
  496. </summary>
  497. </member>
  498. <member name="F:System.Windows.Controls.DataVisualization.Charting.DataPoint.StateRevealShown">
  499. <summary>
  500. Shown state of the Reveal group.
  501. </summary>
  502. </member>
  503. <member name="F:System.Windows.Controls.DataVisualization.Charting.DataPoint.StateRevealHidden">
  504. <summary>
  505. Hidden state of the Reveal group.
  506. </summary>
  507. </member>
  508. <member name="F:System.Windows.Controls.DataVisualization.Charting.DataPoint.IsSelectionEnabledProperty">
  509. <summary>
  510. Identifies the IsSelectionEnabled dependency property.
  511. </summary>
  512. </member>
  513. <member name="M:System.Windows.Controls.DataVisualization.Charting.DataPoint.OnIsSelectionEnabledPropertyChanged(System.Windows.DependencyObject,System.Windows.DependencyPropertyChangedEventArgs)">
  514. <summary>
  515. IsSelectionEnabledProperty property changed handler.
  516. </summary>
  517. <param name="d">Control that changed its IsSelectionEnabled.</param>
  518. <param name="e">Event arguments.</param>
  519. </member>
  520. <member name="M:System.Windows.Controls.DataVisualization.Charting.DataPoint.OnIsSelectionEnabledPropertyChanged(System.Boolean,System.Boolean)">
  521. <summary>
  522. IsSelectionEnabledProperty property changed handler.
  523. </summary>
  524. <param name="oldValue">Old value.</param>
  525. <param name="newValue">New value.</param>
  526. </member>
  527. <member name="F:System.Windows.Controls.DataVisualization.Charting.DataPoint._isHovered">
  528. <summary>
  529. A value indicating whether the mouse is hovering over the data
  530. point.
  531. </summary>
  532. </member>
  533. <member name="M:System.Windows.Controls.DataVisualization.Charting.DataPoint.OnIsHoveredPropertyChanged(System.Boolean,System.Boolean)">
  534. <summary>
  535. IsHoveredProperty property changed handler.
  536. </summary>
  537. <param name="oldValue">Old value.</param>
  538. <param name="newValue">New value.</param>
  539. </member>
  540. <member name="F:System.Windows.Controls.DataVisualization.Charting.DataPoint.IsSelectedProperty">
  541. <summary>
  542. Identifies the IsSelected dependency property.
  543. </summary>
  544. </member>
  545. <member name="M:System.Windows.Controls.DataVisualization.Charting.DataPoint.OnIsSelectedPropertyChanged(System.Windows.DependencyObject,System.Windows.DependencyPropertyChangedEventArgs)">
  546. <summary>
  547. IsSelectedProperty property changed handler.
  548. </summary>
  549. <param name="d">Control that changed its IsSelected.</param>
  550. <param name="e">Event arguments.</param>
  551. </member>
  552. <member name="M:System.Windows.Controls.DataVisualization.Charting.DataPoint.OnIsSelectedPropertyChanged(System.Boolean,System.Boolean)">
  553. <summary>
  554. IsSelectedProperty property changed handler.
  555. </summary>
  556. <param name="oldValue">The value to be replaced.</param>
  557. <param name="newValue">The new value.</param>
  558. </member>
  559. <member name="F:System.Windows.Controls.DataVisualization.Charting.DataPoint.ActualDependentValueProperty">
  560. <summary>
  561. Identifies the ActualDependentValue dependency property.
  562. </summary>
  563. </member>
  564. <member name="M:System.Windows.Controls.DataVisualization.Charting.DataPoint.OnActualDependentValuePropertyChanged(System.Windows.DependencyObject,System.Windows.DependencyPropertyChangedEventArgs)">
  565. <summary>
  566. Called when the value of the ActualDependentValue property changes.
  567. </summary>
  568. <param name="d">Control that changed its ActualDependentValue.</param>
  569. <param name="e">Event arguments.</param>
  570. </member>
  571. <member name="F:System.Windows.Controls.DataVisualization.Charting.DataPoint._isCoercingActualDependentValue">
  572. <summary>
  573. A value indicating whether the actual independent value is being
  574. coerced.
  575. </summary>
  576. </member>
  577. <member name="F:System.Windows.Controls.DataVisualization.Charting.DataPoint._oldActualDependentValueBeforeCoercion">
  578. <summary>
  579. The preserved previous actual dependent value before coercion.
  580. </summary>
  581. </member>
  582. <member name="M:System.Windows.Controls.DataVisualization.Charting.DataPoint.OnActualDependentValuePropertyChanged(System.IComparable,System.IComparable)">
  583. <summary>
  584. Called when the value of the ActualDependentValue property changes.
  585. </summary>
  586. <param name="oldValue">The value to be replaced.</param>
  587. <param name="newValue">The new value.</param>
  588. </member>
  589. <member name="F:System.Windows.Controls.DataVisualization.Charting.DataPoint.DependentValueProperty">
  590. <summary>
  591. Identifies the DependentValue dependency property.
  592. </summary>
  593. </member>
  594. <member name="M:System.Windows.Controls.DataVisualization.Charting.DataPoint.OnDependentValuePropertyChanged(System.Windows.DependencyObject,System.Windows.DependencyPropertyChangedEventArgs)">
  595. <summary>
  596. Called when the DependentValue property changes.
  597. </summary>
  598. <param name="d">Control that changed its DependentValue.</param>
  599. <param name="e">Event arguments.</param>
  600. </member>
  601. <member name="M:System.Windows.Controls.DataVisualization.Charting.DataPoint.OnDependentValuePropertyChanged(System.IComparable,System.IComparable)">
  602. <summary>
  603. Called when the DependentValue property changes.
  604. </summary>
  605. <param name="oldValue">The value to be replaced.</param>
  606. <param name="newValue">The new value.</param>
  607. </member>
  608. <member name="F:System.Windows.Controls.DataVisualization.Charting.DataPoint.DependentValueStringFormatProperty">
  609. <summary>
  610. Identifies the DependentValueStringFormat dependency property.
  611. </summary>
  612. </member>
  613. <member name="M:System.Windows.Controls.DataVisualization.Charting.DataPoint.OnDependentValueStringFormatPropertyChanged(System.Windows.DependencyObject,System.Windows.DependencyPropertyChangedEventArgs)">
  614. <summary>
  615. Called when DependentValueStringFormat property changes.
  616. </summary>
  617. <param name="d">Control that changed its DependentValueStringFormat.</param>
  618. <param name="e">Event arguments.</param>
  619. </member>
  620. <member name="M:System.Windows.Controls.DataVisualization.Charting.DataPoint.OnDependentValueStringFormatPropertyChanged(System.String,System.String)">
  621. <summary>
  622. Called when DependentValueStringFormat property changes.
  623. </summary>
  624. <param name="oldValue">The value to be replaced.</param>
  625. <param name="newValue">The new value.</param>
  626. </member>
  627. <member name="F:System.Windows.Controls.DataVisualization.Charting.DataPoint.FormattedDependentValueProperty">
  628. <summary>
  629. Identifies the FormattedDependentValue dependency property.
  630. </summary>
  631. </member>
  632. <member name="F:System.Windows.Controls.DataVisualization.Charting.DataPoint.FormattedIndependentValueProperty">
  633. <summary>
  634. Identifies the FormattedIndependentValue dependency property.
  635. </summary>
  636. </member>
  637. <member name="F:System.Windows.Controls.DataVisualization.Charting.DataPoint.IndependentValueProperty">
  638. <summary>
  639. Identifies the IndependentValue dependency property.
  640. </summary>
  641. </member>
  642. <member name="M:System.Windows.Controls.DataVisualization.Charting.DataPoint.OnIndependentValuePropertyChanged(System.Windows.DependencyObject,System.Windows.DependencyPropertyChangedEventArgs)">
  643. <summary>
  644. Called when the IndependentValue property changes.
  645. </summary>
  646. <param name="d">Control that changed its IndependentValue.</param>
  647. <param name="e">Event arguments.</param>
  648. </member>
  649. <member name="M:System.Windows.Controls.DataVisualization.Charting.DataPoint.OnIndependentValuePropertyChanged(System.Object,System.Object)">
  650. <summary>
  651. Called when the IndependentValue property changes.
  652. </summary>
  653. <param name="oldValue">The old value.</param>
  654. <param name="newValue">The new value.</param>
  655. </member>
  656. <member name="F:System.Windows.Controls.DataVisualization.Charting.DataPoint.IndependentValueStringFormatProperty">
  657. <summary>
  658. Identifies the IndependentValueStringFormat dependency property.
  659. </summary>
  660. </member>
  661. <member name="M:System.Windows.Controls.DataVisualization.Charting.DataPoint.OnIndependentValueStringFormatPropertyChanged(System.Windows.DependencyObject,System.Windows.DependencyPropertyChangedEventArgs)">
  662. <summary>
  663. Called when the value of the IndependentValueStringFormat property changes.
  664. </summary>
  665. <param name="d">Control that changed its IndependentValueStringFormat.</param>
  666. <param name="e">Event arguments.</param>
  667. </member>
  668. <member name="M:System.Windows.Controls.DataVisualization.Charting.DataPoint.OnIndependentValueStringFormatPropertyChanged(System.String,System.String)">
  669. <summary>
  670. Called when the value of the IndependentValueStringFormat property changes.
  671. </summary>
  672. <param name="oldValue">The value to be replaced.</param>
  673. <param name="newValue">The new value.</param>
  674. </member>
  675. <member name="F:System.Windows.Controls.DataVisualization.Charting.DataPoint._isCoercingActualIndependentValue">
  676. <summary>
  677. A value indicating whether the actual independent value is being
  678. coerced.
  679. </summary>
  680. </member>
  681. <member name="F:System.Windows.Controls.DataVisualization.Charting.DataPoint._oldActualIndependentValueBeforeCoercion">
  682. <summary>
  683. The preserved previous actual dependent value before coercion.
  684. </summary>
  685. </member>
  686. <member name="F:System.Windows.Controls.DataVisualization.Charting.DataPoint.ActualIndependentValueProperty">
  687. <summary>
  688. Identifies the ActualIndependentValue dependency property.
  689. </summary>
  690. </member>
  691. <member name="M:System.Windows.Controls.DataVisualization.Charting.DataPoint.OnActualIndependentValuePropertyChanged(System.Windows.DependencyObject,System.Windows.DependencyPropertyChangedEventArgs)">
  692. <summary>
  693. Called when the ActualIndependentValue property changes.
  694. </summary>
  695. <param name="d">Control that changed its ActualIndependentValue.</param>
  696. <param name="e">Event arguments.</param>
  697. </member>
  698. <member name="M:System.Windows.Controls.DataVisualization.Charting.DataPoint.OnActualIndependentValuePropertyChanged(System.Object,System.Object)">
  699. <summary>
  700. Called when the ActualIndependentValue property changes.
  701. </summary>
  702. <param name="oldValue">The value to be replaced.</param>
  703. <param name="newValue">The new value.</param>
  704. </member>
  705. <member name="F:System.Windows.Controls.DataVisualization.Charting.DataPoint.StateProperty">
  706. <summary>
  707. Identifies the State dependency property.
  708. </summary>
  709. </member>
  710. <member name="M:System.Windows.Controls.DataVisualization.Charting.DataPoint.OnStatePropertyChanged(System.Windows.DependencyObject,System.Windows.DependencyPropertyChangedEventArgs)">
  711. <summary>
  712. Called when the value of the State property changes.
  713. </summary>
  714. <param name="d">Control that changed its State.</param>
  715. <param name="e">Event arguments.</param>
  716. </member>
  717. <member name="M:System.Windows.Controls.DataVisualization.Charting.DataPoint.OnStatePropertyChanged(System.Windows.Controls.DataVisualization.Charting.DataPointState,System.Windows.Controls.DataVisualization.Charting.DataPointState)">
  718. <summary>
  719. Called when the value of the State property changes.
  720. </summary>
  721. <param name="oldValue">The value to be replaced.</param>
  722. <param name="newValue">The new value.</param>
  723. </member>
  724. <member name="F:System.Windows.Controls.DataVisualization.Charting.DataPoint._haveStateRevealShown">
  725. <summary>
  726. Tracks whether the Reveal/Shown VisualState is available.
  727. </summary>
  728. </member>
  729. <member name="F:System.Windows.Controls.DataVisualization.Charting.DataPoint._haveStateRevealHidden">
  730. <summary>
  731. Tracks whether the Reveal/Hidden VisualState is available.
  732. </summary>
  733. </member>
  734. <member name="F:System.Windows.Controls.DataVisualization.Charting.DataPoint._templateApplied">
  735. <summary>
  736. Tracks whether the template has been applied yet.
  737. </summary>
  738. </member>
  739. <member name="M:System.Windows.Controls.DataVisualization.Charting.DataPoint.#ctor">
  740. <summary>
  741. Initializes a new instance of the DataPoint class.
  742. </summary>
  743. </member>
  744. <member name="M:System.Windows.Controls.DataVisualization.Charting.DataPoint.GoToCurrentRevealState">
  745. <summary>
  746. Updates the Control's visuals to reflect the current state(s).
  747. </summary>
  748. <returns>True if a state transition was started.</returns>
  749. </member>
  750. <member name="M:System.Windows.Controls.DataVisualization.Charting.DataPoint.OnApplyTemplate">
  751. <summary>
  752. Builds the visual tree for the DataPoint when a new template is applied.
  753. </summary>
  754. </member>
  755. <member name="M:System.Windows.Controls.DataVisualization.Charting.DataPoint.OnCurrentStateChanged(System.Object,System.Windows.VisualStateChangedEventArgs)">
  756. <summary>
  757. Changes the DataPoint object's state after one of the VSM state animations completes.
  758. </summary>
  759. <param name="sender">Event source.</param>
  760. <param name="e">Event arguments.</param>
  761. </member>
  762. <member name="M:System.Windows.Controls.DataVisualization.Charting.DataPoint.OnLoaded(System.Object,System.Windows.RoutedEventArgs)">
  763. <summary>
  764. Handles the Control's Loaded event.
  765. </summary>
  766. <param name="sender">The Control.</param>
  767. <param name="e">Event arguments.</param>
  768. </member>
  769. <member name="M:System.Windows.Controls.DataVisualization.Charting.DataPoint.OnMouseEnter(System.Windows.Input.MouseEventArgs)">
  770. <summary>
  771. Provides handling for the MouseEnter event.
  772. </summary>
  773. <param name="e">Event arguments.</param>
  774. </member>
  775. <member name="M:System.Windows.Controls.DataVisualization.Charting.DataPoint.OnMouseLeave(System.Windows.Input.MouseEventArgs)">
  776. <summary>
  777. Provides handling for the MouseLeave event.
  778. </summary>
  779. <param name="e">Event arguments.</param>
  780. </member>
  781. <member name="M:System.Windows.Controls.DataVisualization.Charting.DataPoint.OnMouseLeftButtonDown(System.Windows.Input.MouseButtonEventArgs)">
  782. <summary>
  783. Provides handling for the MouseLeftButtonDown event.
  784. </summary>
  785. <param name="e">Event arguments.</param>
  786. </member>
  787. <member name="M:System.Windows.Controls.DataVisualization.Charting.DataPoint.SetFormattedProperty(System.Windows.DependencyProperty,System.String,System.Object)">
  788. <summary>
  789. Sets a dependency property with the specified format.
  790. </summary>
  791. <param name="property">The DependencyProperty to set.</param>
  792. <param name="format">The Format string to apply to the value.</param>
  793. <param name="value">The value of the dependency property to be formatted.</param>
  794. </member>
  795. <member name="P:System.Windows.Controls.DataVisualization.Charting.DataPoint.IsSelectionEnabled">
  796. <summary>
  797. Gets or sets a value indicating whether selection is enabled.
  798. </summary>
  799. </member>
  800. <member name="P:System.Windows.Controls.DataVisualization.Charting.DataPoint.IsActive">
  801. <summary>
  802. Gets a value indicating whether the data point is active.
  803. </summary>
  804. </member>
  805. <member name="E:System.Windows.Controls.DataVisualization.Charting.DataPoint.IsSelectedChanged">
  806. <summary>
  807. An event raised when the IsSelected property is changed.
  808. </summary>
  809. </member>
  810. <member name="P:System.Windows.Controls.DataVisualization.Charting.DataPoint.IsHovered">
  811. <summary>
  812. Gets a value indicating whether the mouse is hovering over
  813. the data point.
  814. </summary>
  815. </member>
  816. <member name="P:System.Windows.Controls.DataVisualization.Charting.DataPoint.IsSelected">
  817. <summary>
  818. Gets or sets a value indicating whether the data point is selected.
  819. </summary>
  820. </member>
  821. <member name="E:System.Windows.Controls.DataVisualization.Charting.DataPoint.ActualDependentValueChanged">
  822. <summary>
  823. Event raised when the actual dependent value of the data point is changed.
  824. </summary>
  825. </member>
  826. <member name="P:System.Windows.Controls.DataVisualization.Charting.DataPoint.ActualDependentValue">
  827. <summary>
  828. Gets or sets the actual dependent value displayed in the chart.
  829. </summary>
  830. </member>
  831. <member name="E:System.Windows.Controls.DataVisualization.Charting.DataPoint.DependentValueChanged">
  832. <summary>
  833. This event is raised when the dependent value of the data point is
  834. changed.
  835. </summary>
  836. </member>
  837. <member name="P:System.Windows.Controls.DataVisualization.Charting.DataPoint.DependentValue">
  838. <summary>
  839. Gets or sets the dependent value of the Control.
  840. </summary>
  841. </member>
  842. <member name="P:System.Windows.Controls.DataVisualization.Charting.DataPoint.DependentValueStringFormat">
  843. <summary>
  844. Gets or sets the format string for the FormattedDependentValue property.
  845. </summary>
  846. </member>
  847. <member name="P:System.Windows.Controls.DataVisualization.Charting.DataPoint.FormattedDependentValue">
  848. <summary>
  849. Gets the DependentValue as formatted by the DependentValueStringFormat property.
  850. </summary>
  851. </member>
  852. <member name="P:System.Windows.Controls.DataVisualization.Charting.DataPoint.FormattedIndependentValue">
  853. <summary>
  854. Gets the IndependentValue as formatted by the IndependentValueStringFormat property.
  855. </summary>
  856. </member>
  857. <member name="E:System.Windows.Controls.DataVisualization.Charting.DataPoint.IndependentValueChanged">
  858. <summary>
  859. Called when the independent value of the data point is changed.
  860. </summary>
  861. </member>
  862. <member name="P:System.Windows.Controls.DataVisualization.Charting.DataPoint.IndependentValue">
  863. <summary>
  864. Gets or sets the independent value.
  865. </summary>
  866. </member>
  867. <member name="P:System.Windows.Controls.DataVisualization.Charting.DataPoint.IndependentValueStringFormat">
  868. <summary>
  869. Gets or sets the format string for the FormattedIndependentValue property.
  870. </summary>
  871. </member>
  872. <member name="E:System.Windows.Controls.DataVisualization.Charting.DataPoint.ActualIndependentValueChanged">
  873. <summary>
  874. Occurs when the actual independent value of the data point is
  875. changed.
  876. </summary>
  877. </member>
  878. <member name="P:System.Windows.Controls.DataVisualization.Charting.DataPoint.ActualIndependentValue">
  879. <summary>
  880. Gets or sets the actual independent value.
  881. </summary>
  882. </member>
  883. <member name="E:System.Windows.Controls.DataVisualization.Charting.DataPoint.StateChanged">
  884. <summary>
  885. Occurs when the state of a data point is changed.
  886. </summary>
  887. </member>
  888. <member name="P:System.Windows.Controls.DataVisualization.Charting.DataPoint.IsCoercingState">
  889. <summary>
  890. Gets or sets a value indicating whether the State property is being
  891. coerced to its previous value.
  892. </summary>
  893. </member>
  894. <member name="P:System.Windows.Controls.DataVisualization.Charting.DataPoint.State">
  895. <summary>
  896. Gets or sets the state of the data point.
  897. </summary>
  898. </member>
  899. <member name="P:System.Windows.Controls.DataVisualization.Charting.DataPoint.ImplementationRoot">
  900. <summary>
  901. Gets the implementation root of the Control.
  902. </summary>
  903. <remarks>
  904. Implements Silverlight's corresponding internal property on Control.
  905. </remarks>
  906. </member>
  907. <member name="P:System.Windows.Controls.DataVisualization.Charting.DataPoint.DefinitionSeriesIsSelectionEnabledHandling">
  908. <summary>
  909. Gets or sets a value indicating whether to handle IsSelectionEnabled in the DefinitionSeries manner.
  910. </summary>
  911. </member>
  912. <member name="M:System.Windows.Controls.DataVisualization.Charting.AreaDataPoint.#ctor">
  913. <summary>
  914. Initializes a new instance of the AreaDataPoint class.
  915. </summary>
  916. </member>
  917. <member name="T:System.Windows.Controls.DataVisualization.Charting.FrameworkElementExtensions">
  918. <summary>
  919. A set of extension methods for the DataPoint class.
  920. </summary>
  921. </member>
  922. <member name="M:System.Windows.Controls.DataVisualization.Charting.FrameworkElementExtensions.GetActualMargin(System.Windows.FrameworkElement,System.Windows.Controls.DataVisualization.Charting.IAxis)">
  923. <summary>
  924. Returns the actual margin for a given framework element and axis.
  925. </summary>
  926. <param name="element">The framework element.</param>
  927. <param name="axis">The axis along which to return the margin.
  928. </param>
  929. <returns>The margin for a given framework element and axis.
  930. </returns>
  931. </member>
  932. <member name="M:System.Windows.Controls.DataVisualization.Charting.FrameworkElementExtensions.GetMargin(System.Windows.FrameworkElement,System.Windows.Controls.DataVisualization.Charting.IAxis)">
  933. <summary>
  934. Returns the margin for a given framework element and axis.
  935. </summary>
  936. <param name="element">The framework element.</param>
  937. <param name="axis">The axis along which to return the margin.
  938. </param>
  939. <returns>The margin for a given framework element and axis.
  940. </returns>
  941. </member>
  942. <member name="T:System.Windows.Controls.DataVisualization.Charting.Primitives.Edge">
  943. <summary>
  944. Specifies the edge position of a child element that is inside an
  945. EdgePanel.
  946. </summary>
  947. <QualityBand>Preview</QualityBand>
  948. </member>
  949. <member name="F:System.Windows.Controls.DataVisualization.Charting.Primitives.Edge.Center">
  950. <summary>
  951. A child element that is positioned in the center of a EdgePanel.
  952. </summary>
  953. </member>
  954. <member name="F:System.Windows.Controls.DataVisualization.Charting.Primitives.Edge.Left">
  955. <summary>
  956. A child element that is positioned on the left side of the
  957. EdgePanel.
  958. </summary>
  959. </member>
  960. <member name="F:System.Windows.Controls.DataVisualization.Charting.Primitives.Edge.Top">
  961. <summary>
  962. A child element that is positioned at the top of the EdgePanel.
  963. </summary>
  964. </member>
  965. <member name="F:System.Windows.Controls.DataVisualization.Charting.Primitives.Edge.Right">
  966. <summary>
  967. A child element that is positioned on the right side of the
  968. EdgePanel.
  969. </summary>
  970. </member>
  971. <member name="F:System.Windows.Controls.DataVisualization.Charting.Primitives.Edge.Bottom">
  972. <summary>
  973. A child element that is positioned at the bottom of the EdgePanel.
  974. </summary>
  975. </member>
  976. <member name="T:System.Windows.Controls.DataVisualization.Charting.Primitives.EdgePanel">
  977. <summary>
  978. Defines an area where you can arrange child elements either horizontally
  979. or vertically, relative to each other.
  980. </summary>
  981. <QualityBand>Preview</QualityBand>
  982. </member>
  983. <member name="F:System.Windows.Controls.DataVisualization.Charting.Primitives.EdgePanel.MaximumIterations">
  984. <summary>
  985. The maximum number of iterations.
  986. </summary>
  987. </member>
  988. <member name="F:System.Windows.Controls.DataVisualization.Charting.Primitives.EdgePanel._ignorePropertyChange">
  989. <summary>
  990. A flag that ignores a property change when set.
  991. </summary>
  992. </member>
  993. <member name="M:System.Windows.Controls.DataVisualization.Charting.Primitives.EdgePanel.GetEdge(System.Windows.UIElement)">
  994. <summary>
  995. Gets the value of the Edge attached property for a specified
  996. UIElement.
  997. </summary>
  998. <param name="element">
  999. The element from which the property value is read.
  1000. </param>
  1001. <returns>The Edge property value for the element.</returns>
  1002. </member>
  1003. <member name="M:System.Windows.Controls.DataVisualization.Charting.Primitives.EdgePanel.SetEdge(System.Windows.UIElement,System.Windows.Controls.DataVisualization.Charting.Primitives.Edge)">
  1004. <summary>
  1005. Sets the value of the Edge attached property to a specified element.
  1006. </summary>
  1007. <param name="element">
  1008. The element to which the attached property is written.
  1009. </param>
  1010. <param name="edge">The needed Edge value.</param>
  1011. </member>
  1012. <member name="F:System.Windows.Controls.DataVisualization.Charting.Primitives.EdgePanel.EdgeProperty">
  1013. <summary>
  1014. Identifies the Edge dependency property.
  1015. </summary>
  1016. </member>
  1017. <member name="M:System.Windows.Controls.DataVisualization.Charting.Primitives.EdgePanel.OnEdgePropertyChanged(System.Windows.DependencyObject,System.Windows.DependencyPropertyChangedEventArgs)">
  1018. <summary>
  1019. EdgeProperty property changed handler.
  1020. </summary>
  1021. <param name="d">UIElement that changed its Edge.</param>
  1022. <param name="e">Event arguments.</param>
  1023. </member>
  1024. <member name="M:System.Windows.Controls.DataVisualization.Charting.Primitives.EdgePanel.#ctor">
  1025. <summary>
  1026. Initializes a new instance of the EdgePanel class.
  1027. </summary>
  1028. </member>
  1029. <member name="M:System.Windows.Controls.DataVisualization.Charting.Primitives.EdgePanel.EdgePanelSizeChanged(System.Object,System.Windows.SizeChangedEventArgs)">
  1030. <summary>
  1031. Invalidate measure when edge panel is resized.
  1032. </summary>
  1033. <param name="sender">The source of the event.</param>
  1034. <param name="e">Information about the event.</param>
  1035. </member>
  1036. <member name="F:System.Windows.Controls.DataVisualization.Charting.Primitives.EdgePanel._leftRect">
  1037. <summary>
  1038. The left rectangle in which to render left elements.
  1039. </summary>
  1040. </member>
  1041. <member name="F:System.Windows.Controls.DataVisualization.Charting.Primitives.EdgePanel._rightRect">
  1042. <summary>
  1043. The right rectangle in which to render right elements.
  1044. </summary>
  1045. </member>
  1046. <member name="F:System.Windows.Controls.DataVisualization.Charting.Primitives.EdgePanel._topRect">
  1047. <summary>
  1048. The top rectangle in which to render top elements.
  1049. </summary>
  1050. </member>
  1051. <member name="F:System.Windows.Controls.DataVisualization.Charting.Primitives.EdgePanel._bottomRect">
  1052. <summary>
  1053. The bottom rectangle in which to render bottom elements.
  1054. </summary>
  1055. </member>
  1056. <member name="M:System.Windows.Controls.DataVisualization.Charting.Primitives.EdgePanel.MeasureOverride(System.Windows.Size)">
  1057. <summary>
  1058. Measures the children of a EdgePanel in anticipation of arranging
  1059. them during the ArrangeOverride pass.
  1060. </summary>
  1061. <param name="constraint">A maximum Size to not exceed.</param>
  1062. <returns>The desired size of the EdgePanel.</returns>
  1063. </member>
  1064. <member name="M:System.Windows.Controls.DataVisualization.Charting.Primitives.EdgePanel.ArrangeOverride(System.Windows.Size)">
  1065. <summary>
  1066. Arranges the content (child elements) of a EdgePanel element.
  1067. </summary>
  1068. <param name="arrangeSize">
  1069. The Size the EdgePanel uses to arrange its child elements.
  1070. </param>
  1071. <returns>The arranged size of the EdgePanel.</returns>
  1072. </member>
  1073. <member name="M:System.Windows.Controls.DataVisualization.Charting.Primitives.EdgePanel.SafeCreateRect(System.Double,System.Double,System.Double,System.Double)">
  1074. <summary>
  1075. Creates a Rect safely by forcing width/height to be valid.
  1076. </summary>
  1077. <param name="left">Rect left parameter.</param>
  1078. <param name="top">Rect top parameter.</param>
  1079. <param name="width">Rect width parameter.</param>
  1080. <param name="height">Rect height parameter.</param>
  1081. <returns>New Rect struct.</returns>
  1082. </member>
  1083. <member name="T:System.Windows.Controls.DataVisualization.Charting.Axis">
  1084. <summary>
  1085. An axis class used to determine the plot area coordinate of values.
  1086. </summary>
  1087. </member>
  1088. <member name="T:System.Windows.Controls.DataVisualization.Charting.IAxis">
  1089. <summary>
  1090. An axis interface used to determine the plot area coordinate of values.
  1091. </summary>
  1092. </member>
  1093. <member name="M:System.Windows.Controls.DataVisualization.Charting.IAxis.CanPlot(System.Object)">
  1094. <summary>
  1095. Returns a value indicating whether the axis can plot a value.
  1096. </summary>
  1097. <param name="value">The value to plot.</param>
  1098. <returns>A value indicating whether the axis can plot a value.
  1099. </returns>
  1100. </member>
  1101. <member name="M:System.Windows.Controls.DataVisualization.Charting.IAxis.GetPlotAreaCoordinate(System.Object)">
  1102. <summary>
  1103. The plot area coordinate of a value.
  1104. </summary>
  1105. <param name="value">The value for which to retrieve the plot area
  1106. coordinate.</param>
  1107. <returns>The plot area coordinate.</returns>
  1108. </member>
  1109. <member name="P:System.Windows.Controls.DataVisualization.Charting.IAxis.Orientation">
  1110. <summary>
  1111. Gets or sets the orientation of the axis.
  1112. </summary>
  1113. </member>
  1114. <member name="E:System.Windows.Controls.DataVisualization.Charting.IAxis.OrientationChanged">
  1115. <summary>
  1116. This event is raised when the Orientation property is changed.
  1117. </summary>
  1118. </member>
  1119. <member name="P:System.Windows.Controls.DataVisualization.Charting.IAxis.RegisteredListeners">
  1120. <summary>
  1121. Gets the registered IAxisListeners.
  1122. </summary>
  1123. </member>
  1124. <member name="P:System.Windows.Controls.DataVisualization.Charting.IAxis.DependentAxes">
  1125. <summary>
  1126. Gets the collection of child axes.
  1127. </summary>
  1128. </member>
  1129. <member name="F:System.Windows.Controls.DataVisualization.Charting.Axis.LocationProperty">
  1130. <summary>
  1131. Identifies the Location dependency property.
  1132. </summary>
  1133. </member>
  1134. <member name="M:System.Windows.Controls.DataVisualization.Charting.Axis.OnLocationPropertyChanged(System.Windows.DependencyObject,System.Windows.DependencyPropertyChangedEventArgs)">
  1135. <summary>
  1136. LocationProperty property changed handler.
  1137. </summary>
  1138. <param name="d">Axis that changed its Location.</param>
  1139. <param name="e">Event arguments.</param>
  1140. </member>
  1141. <member name="M:System.Windows.Controls.DataVisualization.Charting.Axis.OnLocationPropertyChanged(System.Windows.Controls.DataVisualization.Charting.AxisLocation,System.Windows.Controls.DataVisualization.Charting.AxisLocation)">
  1142. <summary>
  1143. LocationProperty property changed handler.
  1144. </summary>
  1145. <param name="oldValue">Old value.</param>
  1146. <param name="newValue">New value.</param>
  1147. </member>
  1148. <member name="F:System.Windows.Controls.DataVisualization.Charting.Axis.OrientationProperty">
  1149. <summary>
  1150. Identifies the Orientation dependency property.
  1151. </summary>
  1152. </member>
  1153. <member name="M:System.Windows.Controls.DataVisualization.Charting.Axis.OnOrientationPropertyChanged(System.Windows.DependencyObject,System.Windows.DependencyPropertyChangedEventArgs)">
  1154. <summary>
  1155. OrientationProperty property changed handler.
  1156. </summary>
  1157. <param name="d">Axis that changed its Orientation.</param>
  1158. <param name="e">Event arguments.</param>
  1159. </member>
  1160. <member name="M:System.Windows.Controls.DataVisualization.Charting.Axis.OnOrientationPropertyChanged(System.Windows.Controls.DataVisualization.Charting.AxisOrientation,System.Windows.Controls.DataVisualization.Charting.AxisOrientation)">
  1161. <summary>
  1162. OrientationProperty property changed handler.
  1163. </summary>
  1164. <param name="oldValue">Old value.</param>
  1165. <param name="newValue">New value.</param>
  1166. </member>
  1167. <member name="M:System.Windows.Controls.DataVisualization.Charting.Axis.OnInvalidated(System.Windows.RoutedEventArgs)">
  1168. <summary>
  1169. Raises the invalidated event.
  1170. </summary>
  1171. <param name="args">Information about the event.</param>
  1172. </member>
  1173. <member name="M:System.Windows.Controls.DataVisualization.Charting.Axis.CanPlot(System.Object)">
  1174. <summary>
  1175. Returns a value indicating whether the axis can plot a value.
  1176. </summary>
  1177. <param name="value">The value to plot.</param>
  1178. <returns>A value indicating whether the axis can plot a value.
  1179. </returns>
  1180. </member>
  1181. <member name="M:System.Windows.Controls.DataVisualization.Charting.Axis.GetPlotAreaCoordinate(System.Object)">
  1182. <summary>
  1183. The plot area coordinate of a value.
  1184. </summary>
  1185. <param name="value">The value for which to retrieve the plot area
  1186. coordinate.</param>
  1187. <returns>The plot area coordinate.</returns>
  1188. </member>
  1189. <member name="M:System.Windows.Controls.DataVisualization.Charting.Axis.#ctor">
  1190. <summary>
  1191. Instantiates a new instance of the Axis class.
  1192. </summary>
  1193. </member>
  1194. <member name="M:System.Windows.Controls.DataVisualization.Charting.Axis.OnChildAxesCollectionChanged(System.Object,System.Collections.Specialized.NotifyCollectionChangedEventArgs)">
  1195. <summary>
  1196. Child axes collection changed.
  1197. </summary>
  1198. <param name="sender">The source of the event.</param>
  1199. <param name="e">Information about the event.</param>
  1200. </member>
  1201. <member name="M:System.Windows.Controls.DataVisualization.Charting.Axis.OnDependentAxesCollectionChanged">
  1202. <summary>
  1203. Child axes collection changed.
  1204. </summary>
  1205. </member>
  1206. <member name="M:System.Windows.Controls.DataVisualization.Charting.Axis.RegisteredListenersCollectionChanged(System.Object,System.Collections.Specialized.NotifyCollectionChangedEventArgs)">
  1207. <summary>
  1208. This event is raised when the registered listeners collection is