DevExpress.Sparkline.v17.2.Core.xml 27 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814
  1. <?xml version="1.0"?>
  2. <doc>
  3. <assembly>
  4. <name>DevExpress.Sparkline.v17.2.Core</name>
  5. </assembly>
  6. <members>
  7. <member name="T:DevExpress.Sparkline.ISparklineViewVisitor">
  8. <summary>
  9. <para>Interface implementing the <b>Visitor</b> pattern.
  10. </para>
  11. </summary>
  12. </member>
  13. <member name="M:DevExpress.Sparkline.ISparklineViewVisitor.Visit(DevExpress.Sparkline.LineSparklineView)">
  14. <summary>
  15. <para>Performs the operation as required by the Visitor and the View, as defined in the Visitor pattern.
  16. </para>
  17. </summary>
  18. <param name="view">
  19. An <see cref="T:DevExpress.Sparkline.LineSparklineView"/> object for which the operation is performed.
  20. </param>
  21. </member>
  22. <member name="M:DevExpress.Sparkline.ISparklineViewVisitor.Visit(DevExpress.Sparkline.AreaSparklineView)">
  23. <summary>
  24. <para>Performs the operation as required by the Visitor and the View, as defined in the Visitor pattern.
  25. </para>
  26. </summary>
  27. <param name="view">
  28. An <see cref="T:DevExpress.Sparkline.AreaSparklineView"/> object for which the operation is performed.
  29. </param>
  30. </member>
  31. <member name="M:DevExpress.Sparkline.ISparklineViewVisitor.Visit(DevExpress.Sparkline.BarSparklineView)">
  32. <summary>
  33. <para>Performs the operation as required by the Visitor and the View, as defined in the Visitor pattern.
  34. </para>
  35. </summary>
  36. <param name="view">
  37. An <see cref="T:DevExpress.Sparkline.BarSparklineView"/> object for which the operation is performed.
  38. </param>
  39. </member>
  40. <member name="M:DevExpress.Sparkline.ISparklineViewVisitor.Visit(DevExpress.Sparkline.WinLossSparklineView)">
  41. <summary>
  42. <para>Performs the operation as required by the Visitor and the View, as defined in the Visitor pattern.
  43. </para>
  44. </summary>
  45. <param name="view">
  46. An <see cref="T:DevExpress.Sparkline.WinLossSparklineView"/> object for which the operation is performed.
  47. </param>
  48. </member>
  49. <member name="T:DevExpress.Sparkline.BarSparklineView">
  50. <summary>
  51. <para>The <b>Bar</b> sparkline view.
  52. </para>
  53. </summary>
  54. </member>
  55. <member name="M:DevExpress.Sparkline.BarSparklineView.#ctor">
  56. <summary>
  57. <para>Initializes a new instance of the BarSparklineView class with the default settings.
  58. </para>
  59. </summary>
  60. </member>
  61. <member name="M:DevExpress.Sparkline.BarSparklineView.Assign(DevExpress.Sparkline.SparklineViewBase)">
  62. <summary>
  63. <para>Copies all the settings from the BarSparklineView object passed as the parameter.
  64. </para>
  65. </summary>
  66. <param name="view">
  67. A BarSparklineView object (which is the <see cref="T:DevExpress.Sparkline.SparklineViewBase"/> descendant) whose settings are assigned to the current object. If <b>null</b> (<b>Nothing</b> in Visual Basic), then a <see cref="T:System.ArgumentNullException"/> will be thrown.
  68. </param>
  69. </member>
  70. <member name="P:DevExpress.Sparkline.BarSparklineView.HighlightNegativePoints">
  71. <summary>
  72. <para>Gets or sets a value specifying whether or not to highlight all sparkline points that have negative values (less than 0).
  73. </para>
  74. </summary>
  75. <value><b>true</b>, to highlight points with negative values; otherwise, <b>false</b>.
  76. </value>
  77. </member>
  78. <member name="P:DevExpress.Sparkline.BarSparklineView.Type">
  79. <summary>
  80. <para>Gets the type of the sparkline view.
  81. </para>
  82. </summary>
  83. <value>Always <see cref="F:DevExpress.Sparkline.SparklineViewType.Bar"/>.
  84. </value>
  85. </member>
  86. <member name="M:DevExpress.Sparkline.BarSparklineView.Visit(DevExpress.Sparkline.ISparklineViewVisitor)">
  87. <summary>
  88. <para>Invokes the <b>Visit</b> method of the specified visitor for the current BarSparklineView object.
  89. </para>
  90. </summary>
  91. <param name="visitor">
  92. An object implementing the <see cref="T:DevExpress.Sparkline.ISparklineViewVisitor"/> interface.
  93. </param>
  94. </member>
  95. <member name="T:DevExpress.Sparkline.LineSparklineView">
  96. <summary>
  97. <para>The <b>Line</b> sparkline view.
  98. </para>
  99. </summary>
  100. </member>
  101. <member name="M:DevExpress.Sparkline.LineSparklineView.#ctor">
  102. <summary>
  103. <para>Initializes a new instance of the LineSparklineView class with the default settings.
  104. </para>
  105. </summary>
  106. </member>
  107. <member name="P:DevExpress.Sparkline.LineSparklineView.ActualMarkerColor">
  108. <summary>
  109. <para>Gets the actual color of a sparkline marker.
  110. </para>
  111. </summary>
  112. <value>A <see cref="T:System.Drawing.Color"/> value that is the actual marker color.
  113. </value>
  114. </member>
  115. <member name="M:DevExpress.Sparkline.LineSparklineView.Assign(DevExpress.Sparkline.SparklineViewBase)">
  116. <summary>
  117. <para>Copies all the settings from the LineSparklineView object passed as the parameter.
  118. </para>
  119. </summary>
  120. <param name="view">
  121. A LineSparklineView object (which is the <see cref="T:DevExpress.Sparkline.SparklineViewBase"/> descendant) whose settings are assigned to the current object. If <b>null</b> (<b>Nothing</b> in Visual Basic), then a <see cref="T:System.ArgumentNullException"/> will be thrown.
  122. </param>
  123. </member>
  124. <member name="P:DevExpress.Sparkline.LineSparklineView.EnableAntialiasing">
  125. <summary>
  126. <para>Gets or sets whether anti-aliasing (smoothing) is applied to the line view.
  127. </para>
  128. </summary>
  129. <value><b>True</b> to apply anti-aliasing to the line view; <b>False</b> to disable anti-aliasing.
  130. </value>
  131. </member>
  132. <member name="P:DevExpress.Sparkline.LineSparklineView.EndPointMarkerSize">
  133. <summary>
  134. <para>Gets or sets the size of an end point's marker.
  135. </para>
  136. </summary>
  137. <value>An integer value specifying the marker size, in pixels.
  138. </value>
  139. </member>
  140. <member name="P:DevExpress.Sparkline.LineSparklineView.HighlightNegativePoints">
  141. <summary>
  142. <para>Gets or sets a value specifying whether or not to highlight all sparkline points that have negative values (less than 0).
  143. </para>
  144. </summary>
  145. <value><b>true</b>, to highlight points with negative values; otherwise, <b>false</b>.
  146. </value>
  147. </member>
  148. <member name="P:DevExpress.Sparkline.LineSparklineView.LineWidth">
  149. <summary>
  150. <para>Specifies the width of a line in a LineSparklineView.
  151. </para>
  152. </summary>
  153. <value>An integer value specifying the line width (in pixels).
  154. </value>
  155. </member>
  156. <member name="P:DevExpress.Sparkline.LineSparklineView.MarkerColor">
  157. <summary>
  158. <para>Gets or sets the color to draw line markers.
  159. </para>
  160. </summary>
  161. <value>A <see cref="T:System.Drawing.Color"/> that defines the color to draw line markers.
  162. </value>
  163. </member>
  164. <member name="P:DevExpress.Sparkline.LineSparklineView.MarkerSize">
  165. <summary>
  166. <para>Gets or sets the size of markers for data points in a line sparkline.
  167. </para>
  168. </summary>
  169. <value>An integer value specifying the marker size, in pixels.
  170. </value>
  171. </member>
  172. <member name="P:DevExpress.Sparkline.LineSparklineView.MaxPointMarkerSize">
  173. <summary>
  174. <para>Gets or sets the marker size of a data point that has the maximum value among all data points.
  175. </para>
  176. </summary>
  177. <value>An integer value specifying the marker size, in pixels.
  178. </value>
  179. </member>
  180. <member name="P:DevExpress.Sparkline.LineSparklineView.MinPointMarkerSize">
  181. <summary>
  182. <para>Gets or sets the marker size of a data point that has the minimum value among all data points.
  183. </para>
  184. </summary>
  185. <value>An integer value specifying the marker size, in pixels.
  186. </value>
  187. </member>
  188. <member name="P:DevExpress.Sparkline.LineSparklineView.NegativePointMarkerSize">
  189. <summary>
  190. <para>Gets or sets the marker size of all data points that have negative values (less than 0).
  191. </para>
  192. </summary>
  193. <value>An integer value specifying the marker size, in pixels.
  194. </value>
  195. </member>
  196. <member name="M:DevExpress.Sparkline.LineSparklineView.SetSizeForAllMarkers(System.Int32)">
  197. <summary>
  198. <para>Sets size for all markers of a sparkline.
  199. </para>
  200. </summary>
  201. <param name="markerSize">
  202. An integer value specifying the new size for sparkline markers (in pixels).
  203. </param>
  204. </member>
  205. <member name="P:DevExpress.Sparkline.LineSparklineView.ShowMarkers">
  206. <summary>
  207. <para>Gets or sets a value specifying the visibility of point markers on a sparkline.
  208. </para>
  209. </summary>
  210. <value><b>true</b> to show markers for each data point; <b>false</b> to hide them.
  211. </value>
  212. </member>
  213. <member name="P:DevExpress.Sparkline.LineSparklineView.StartPointMarkerSize">
  214. <summary>
  215. <para>Gets or sets the size of a start point's marker.
  216. </para>
  217. </summary>
  218. <value>An integer value specifying the marker size, in pixels.
  219. </value>
  220. </member>
  221. <member name="P:DevExpress.Sparkline.LineSparklineView.Type">
  222. <summary>
  223. <para>Gets the type of the sparkline view.
  224. </para>
  225. </summary>
  226. <value>Always <see cref="F:DevExpress.Sparkline.SparklineViewType.Line"/>.
  227. </value>
  228. </member>
  229. <member name="M:DevExpress.Sparkline.LineSparklineView.Visit(DevExpress.Sparkline.ISparklineViewVisitor)">
  230. <summary>
  231. <para>Invokes the <b>Visit</b> method of the specified visitor for the current LineSparklineView object.
  232. </para>
  233. </summary>
  234. <param name="visitor">
  235. An object implementing the <see cref="T:DevExpress.Sparkline.ISparklineViewVisitor"/> interface.
  236. </param>
  237. </member>
  238. <member name="T:DevExpress.Sparkline.SparklineViewType">
  239. <summary>
  240. <para>Lists the values used to specify the available view types of a sparkline.
  241. </para>
  242. </summary>
  243. </member>
  244. <member name="F:DevExpress.Sparkline.SparklineViewType.Area">
  245. <summary>
  246. <para>Sparkline data points are represented as <b>area</b>.
  247. </para>
  248. </summary>
  249. </member>
  250. <member name="F:DevExpress.Sparkline.SparklineViewType.Bar">
  251. <summary>
  252. <para>Sparkline data points are represented as <b>bars</b>.
  253. </para>
  254. </summary>
  255. </member>
  256. <member name="F:DevExpress.Sparkline.SparklineViewType.Line">
  257. <summary>
  258. <para>Sparkline data points are represented as a <b>line</b>.
  259. </para>
  260. </summary>
  261. </member>
  262. <member name="F:DevExpress.Sparkline.SparklineViewType.WinLoss">
  263. <summary>
  264. <para>Sparkline data points are represented as <b>win</b> and <b>loss</b> squares.
  265. </para>
  266. </summary>
  267. </member>
  268. <member name="T:DevExpress.Sparkline.SparklineRange">
  269. <summary>
  270. <para>Represents a range to be used in DevExpress Sparkline controls.
  271. </para>
  272. </summary>
  273. </member>
  274. <member name="M:DevExpress.Sparkline.SparklineRange.#ctor(System.Double,System.Double)">
  275. <summary>
  276. <para>Initializes a new instance of the SparklineRange class with the specified minimum and maximum limits.
  277. </para>
  278. </summary>
  279. <param name="min">
  280. A <see cref="T:System.Double"/> value, specifying the minimum limit. This value is assigned to the <see cref="P:DevExpress.Sparkline.SparklineRange.Limit1"/> property.
  281. </param>
  282. <param name="max">
  283. A <see cref="T:System.Double"/> value, specifying the maximum limit. This value is assigned to the <see cref="P:DevExpress.Sparkline.SparklineRange.Limit2"/> property.
  284. </param>
  285. </member>
  286. <member name="M:DevExpress.Sparkline.SparklineRange.#ctor">
  287. <summary>
  288. <para>Initializes a new instance of the SparklineRange class with the default settings.
  289. </para>
  290. </summary>
  291. </member>
  292. <member name="P:DevExpress.Sparkline.SparklineRange.IsAuto">
  293. <summary>
  294. <para>Gets or sets a value indicating whether or not range limits should be calculated automatically.
  295. </para>
  296. </summary>
  297. <value><b>true</b> to calculate range limits automatically; <b>false</b> to use the <see cref="P:DevExpress.Sparkline.SparklineRange.Limit1"/> and <see cref="P:DevExpress.Sparkline.SparklineRange.Limit2"/> property values.
  298. </value>
  299. </member>
  300. <member name="P:DevExpress.Sparkline.SparklineRange.Limit1">
  301. <summary>
  302. <para>Gets or sets a value specifying the first limit of the range.
  303. </para>
  304. </summary>
  305. <value>A <see cref="T:System.Double"/> value that specifies the first limit.
  306. </value>
  307. </member>
  308. <member name="P:DevExpress.Sparkline.SparklineRange.Limit2">
  309. <summary>
  310. <para>Gets or sets a value specifying the second limit of the range.
  311. </para>
  312. </summary>
  313. <value>A <see cref="T:System.Double"/> value that specifies the second limit.
  314. </value>
  315. </member>
  316. <member name="E:DevExpress.Sparkline.SparklineRange.PropertiesChanged">
  317. <summary>
  318. <para>This event is hidden, because it is not appropriate for the SparklineRange class.
  319. </para>
  320. </summary>
  321. </member>
  322. <member name="M:DevExpress.Sparkline.SparklineRange.ToString">
  323. <summary>
  324. <para>Returns the textual representation of the SparklineRange.
  325. </para>
  326. </summary>
  327. <returns>A <see cref="T:System.String"/> value which is the textual representation of the SparklineRange.
  328. </returns>
  329. </member>
  330. <member name="T:DevExpress.Sparkline.SparklineViewBase">
  331. <summary>
  332. <para>The base class for sparkline views.
  333. </para>
  334. </summary>
  335. </member>
  336. <member name="P:DevExpress.Sparkline.SparklineViewBase.ActualColor">
  337. <summary>
  338. <para>Gets the actual color of a sparkline.
  339. </para>
  340. </summary>
  341. <value>A <see cref="T:System.Drawing.Color"/> value that is the actual sparkline color.
  342. </value>
  343. </member>
  344. <member name="P:DevExpress.Sparkline.SparklineViewBase.ActualEndPointColor">
  345. <summary>
  346. <para>Gets the actual color of a sparkline end point.
  347. </para>
  348. </summary>
  349. <value>A <see cref="T:System.Drawing.Color"/> value that is the actual point color.
  350. </value>
  351. </member>
  352. <member name="P:DevExpress.Sparkline.SparklineViewBase.ActualMaxPointColor">
  353. <summary>
  354. <para>Gets the actual color of a sparkline maximum point.
  355. </para>
  356. </summary>
  357. <value>A <see cref="T:System.Drawing.Color"/> value that is the actual point color.
  358. </value>
  359. </member>
  360. <member name="P:DevExpress.Sparkline.SparklineViewBase.ActualMinPointColor">
  361. <summary>
  362. <para>Gets the actual color of a sparkline minimum point.
  363. </para>
  364. </summary>
  365. <value>A <see cref="T:System.Drawing.Color"/> value that is the actual point color.
  366. </value>
  367. </member>
  368. <member name="P:DevExpress.Sparkline.SparklineViewBase.ActualNegativePointColor">
  369. <summary>
  370. <para>Gets the actual color of sparkline negative points.
  371. </para>
  372. </summary>
  373. <value>A <see cref="T:System.Drawing.Color"/> value that is the actual point color.
  374. </value>
  375. </member>
  376. <member name="P:DevExpress.Sparkline.SparklineViewBase.ActualStartPointColor">
  377. <summary>
  378. <para>Gets the actual color of a sparkline start point.
  379. </para>
  380. </summary>
  381. <value>A <see cref="T:System.Drawing.Color"/> value that is the actual point color.
  382. </value>
  383. </member>
  384. <member name="M:DevExpress.Sparkline.SparklineViewBase.Assign(DevExpress.Sparkline.SparklineViewBase)">
  385. <summary>
  386. <para>Copies all the settings from the SparklineViewBase object passed as the parameter.
  387. </para>
  388. </summary>
  389. <param name="view">
  390. A SparklineViewBase object (which is the <see cref="T:DevExpress.Sparkline.SparklineViewBase"/> descendant) whose settings are assigned to the current object. If <b>null</b> (<b>Nothing</b> in Visual Basic), then a <see cref="T:System.ArgumentNullException"/> will be thrown.
  391. </param>
  392. </member>
  393. <member name="P:DevExpress.Sparkline.SparklineViewBase.Color">
  394. <summary>
  395. <para>Gets or sets the color to draw a sparkline.
  396. </para>
  397. </summary>
  398. <value>A <see cref="T:System.Drawing.Color"/> that defines the color to draw a sparkline.
  399. </value>
  400. </member>
  401. <member name="M:DevExpress.Sparkline.SparklineViewBase.CreateView(DevExpress.Sparkline.SparklineViewType)">
  402. <summary>
  403. <para>Creates a sparkline view of the specified type.
  404. </para>
  405. </summary>
  406. <param name="viewType">
  407. A <see cref="T:DevExpress.Sparkline.SparklineViewType"/> enumeration value specifying the type of view to create.
  408. </param>
  409. <returns>A <see cref="T:DevExpress.Sparkline.SparklineViewBase"/> class descendant.
  410. </returns>
  411. </member>
  412. <member name="P:DevExpress.Sparkline.SparklineViewBase.EndPointColor">
  413. <summary>
  414. <para>Gets or sets the color to draw the end point of a sparkline.
  415. </para>
  416. </summary>
  417. <value>A <see cref="T:System.Drawing.Color"/> that defines the color to draw the end point.
  418. </value>
  419. </member>
  420. <member name="P:DevExpress.Sparkline.SparklineViewBase.HighlightEndPoint">
  421. <summary>
  422. <para>Gets or sets a value specifying whether or not to highlight the end point of a sparkline.
  423. </para>
  424. </summary>
  425. <value><b>true</b>, to highlight the end point; otherwise, <b>false</b>.
  426. </value>
  427. </member>
  428. <member name="P:DevExpress.Sparkline.SparklineViewBase.HighlightMaxPoint">
  429. <summary>
  430. <para>Gets or sets a value specifying whether or not to highlight a sparkline point that has the highest value among all points.
  431. </para>
  432. </summary>
  433. <value><b>true</b>, to highlight a point with the maximum value; otherwise, <b>false</b>.
  434. </value>
  435. </member>
  436. <member name="P:DevExpress.Sparkline.SparklineViewBase.HighlightMinPoint">
  437. <summary>
  438. <para>Gets or sets a value specifying whether or not to highlight a sparkline point that has the lowest value among all points.
  439. </para>
  440. </summary>
  441. <value><b>true</b>, to highlight a point with the minimum value; otherwise, <b>false</b>.
  442. </value>
  443. </member>
  444. <member name="P:DevExpress.Sparkline.SparklineViewBase.HighlightStartPoint">
  445. <summary>
  446. <para>Gets or sets a value specifying whether or not to highlight the start point of a sparkline.
  447. </para>
  448. </summary>
  449. <value><b>true</b>, to highlight the start point; otherwise, <b>false</b>.
  450. </value>
  451. </member>
  452. <member name="P:DevExpress.Sparkline.SparklineViewBase.MaxPointColor">
  453. <summary>
  454. <para>Gets or sets the color to draw a sparkline point that has the highest value among all data points.
  455. </para>
  456. </summary>
  457. <value>A <see cref="T:System.Drawing.Color"/> that defines the color to draw a data point with the maximum value.
  458. </value>
  459. </member>
  460. <member name="P:DevExpress.Sparkline.SparklineViewBase.MinPointColor">
  461. <summary>
  462. <para>Gets or sets the color to draw a sparkline point that has the lowest value among all data points.
  463. </para>
  464. </summary>
  465. <value>A <see cref="T:System.Drawing.Color"/> that defines the color to draw a data point with the minimum value.
  466. </value>
  467. </member>
  468. <member name="P:DevExpress.Sparkline.SparklineViewBase.NegativePointColor">
  469. <summary>
  470. <para>Gets or sets the color to draw sparkline points that have negative values (less than 0).
  471. </para>
  472. </summary>
  473. <value>A <see cref="T:System.Drawing.Color"/> that defines the color to draw data points with negative values.
  474. </value>
  475. </member>
  476. <member name="E:DevExpress.Sparkline.SparklineViewBase.PropertiesChanged">
  477. <summary>
  478. <para>Occurs when any property of the SparklineViewBase object has changed its value.
  479. </para>
  480. </summary>
  481. </member>
  482. <member name="P:DevExpress.Sparkline.SparklineViewBase.StartPointColor">
  483. <summary>
  484. <para>Gets or sets the color to draw the start point of a sparkline.
  485. </para>
  486. </summary>
  487. <value>A <see cref="T:System.Drawing.Color"/> that defines the color to draw the start point.
  488. </value>
  489. </member>
  490. <member name="M:DevExpress.Sparkline.SparklineViewBase.ToString">
  491. <summary>
  492. <para>Returns a human-readable string that represents the SparklineViewBase object.
  493. </para>
  494. </summary>
  495. <returns>A <see cref="T:System.String"/> value that represents the SparklineViewBase object.
  496. </returns>
  497. </member>
  498. <member name="P:DevExpress.Sparkline.SparklineViewBase.Type">
  499. <summary>
  500. <para>Gets the type of the sparkline view.
  501. </para>
  502. </summary>
  503. <value>A <see cref="T:DevExpress.Sparkline.SparklineViewType"/> enumeration value specifying the view type.
  504. </value>
  505. </member>
  506. <member name="M:DevExpress.Sparkline.SparklineViewBase.Visit(DevExpress.Sparkline.ISparklineViewVisitor)">
  507. <summary>
  508. <para>Invokes the <b>Visit</b> method of the specified visitor for the current SparklineViewBase object.
  509. </para>
  510. </summary>
  511. <param name="visitor">
  512. An object implementing the <see cref="T:DevExpress.Sparkline.ISparklineViewVisitor"/> interface.
  513. </param>
  514. </member>
  515. <member name="T:DevExpress.Sparkline.WinLossSparklineView">
  516. <summary>
  517. <para>The <b>WinLoss</b> sparkline view.
  518. </para>
  519. </summary>
  520. </member>
  521. <member name="M:DevExpress.Sparkline.WinLossSparklineView.#ctor">
  522. <summary>
  523. <para>Initializes a new instance of the WinLossSparklineView class with the default settings.
  524. </para>
  525. </summary>
  526. </member>
  527. <member name="P:DevExpress.Sparkline.WinLossSparklineView.Type">
  528. <summary>
  529. <para>Gets the type of the sparkline view.
  530. </para>
  531. </summary>
  532. <value>Always <see cref="F:DevExpress.Sparkline.SparklineViewType.WinLoss"/>.
  533. </value>
  534. </member>
  535. <member name="M:DevExpress.Sparkline.WinLossSparklineView.Visit(DevExpress.Sparkline.ISparklineViewVisitor)">
  536. <summary>
  537. <para>Invokes the <b>Visit</b> method of the specified visitor for the current WinLossSparklineView object.
  538. </para>
  539. </summary>
  540. <param name="visitor">
  541. An object implementing the <see cref="T:DevExpress.Sparkline.ISparklineViewVisitor"/> interface.
  542. </param>
  543. </member>
  544. <member name="T:DevExpress.Sparkline.BarSparklineViewBase">
  545. <summary>
  546. <para>The base for <b>Bar</b> and <b>WinLoss</b> sparkline views.
  547. </para>
  548. </summary>
  549. </member>
  550. <member name="M:DevExpress.Sparkline.BarSparklineViewBase.Assign(DevExpress.Sparkline.SparklineViewBase)">
  551. <summary>
  552. <para>Copies all the settings from the BarSparklineViewBase object passed as the parameter.
  553. </para>
  554. </summary>
  555. <param name="view">
  556. A BarSparklineViewBase object (which is the <see cref="T:DevExpress.Sparkline.SparklineViewBase"/> descendant) whose settings are assigned to the current object. If <b>null</b> (<b>Nothing</b> in Visual Basic), then a <see cref="T:System.ArgumentNullException"/> will be thrown.
  557. </param>
  558. </member>
  559. <member name="P:DevExpress.Sparkline.BarSparklineViewBase.BarDistance">
  560. <summary>
  561. <para>Specifies the distance between two bars of a bar sparkline.
  562. </para>
  563. </summary>
  564. <value>An integer value (in pixels).
  565. </value>
  566. </member>
  567. <member name="T:DevExpress.Sparkline.AreaSparklineView">
  568. <summary>
  569. <para>The <b>Area</b> sparkline view.
  570. </para>
  571. </summary>
  572. </member>
  573. <member name="M:DevExpress.Sparkline.AreaSparklineView.#ctor">
  574. <summary>
  575. <para>Initializes a new instance of the AreaSparklineView class with the default settings.
  576. </para>
  577. </summary>
  578. </member>
  579. <member name="P:DevExpress.Sparkline.AreaSparklineView.AreaOpacity">
  580. <summary>
  581. <para>Specifies the opacity (<b>0</b>-<b>255</b>) of the area sparkline.
  582. </para>
  583. </summary>
  584. <value>A <see cref="T:System.Byte"/> value from <b>0</b> (transparent) to <b>255</b> (opaque).
  585. </value>
  586. </member>
  587. <member name="M:DevExpress.Sparkline.AreaSparklineView.Assign(DevExpress.Sparkline.SparklineViewBase)">
  588. <summary>
  589. <para>Copies all the settings from the AreaSparklineView object passed as the parameter.
  590. </para>
  591. </summary>
  592. <param name="view">
  593. A AreaSparklineView object (which is the <see cref="T:DevExpress.Sparkline.SparklineViewBase"/> descendant) whose settings are assigned to the current object. If <b>null</b> (<b>Nothing</b> in Visual Basic), then a <see cref="T:System.ArgumentNullException"/> will be thrown.
  594. </param>
  595. </member>
  596. <member name="P:DevExpress.Sparkline.AreaSparklineView.Type">
  597. <summary>
  598. <para>Gets the type of the sparkline view.
  599. </para>
  600. </summary>
  601. <value>Always <see cref="F:DevExpress.Sparkline.SparklineViewType.Area"/>.
  602. </value>
  603. </member>
  604. <member name="M:DevExpress.Sparkline.AreaSparklineView.Visit(DevExpress.Sparkline.ISparklineViewVisitor)">
  605. <summary>
  606. <para>Invokes the <b>Visit</b> method of the specified visitor for the current AreaSparklineView object.
  607. </para>
  608. </summary>
  609. <param name="visitor">
  610. An object implementing the <see cref="T:DevExpress.Sparkline.ISparklineViewVisitor"/> interface.
  611. </param>
  612. </member>
  613. </members>
  614. </doc>