SparklineEdit.SparklineType Property
In This Article
Returns the current sparkline type.
Namespace: DevExpress.Xpf.Editors
Assembly: DevExpress.Xpf.Core.v24.2.dll
NuGet Package: DevExpress.Wpf.Core
#Declaration
public SparklineViewType SparklineType { get; }
#Property Value
Type | Description |
---|---|
Sparkline |
A Sparkline |
Available values:
Name | Description |
---|---|
Line | Sparkline data points are represented as a line. |
Area | Sparkline data points are represented as area. |
Bar | Sparkline data points are represented as bars. |
Win |
Sparkline data points are represented as win and loss squares. |
#Remarks
The current sparkline type is defined by the object assigned to the BaseEdit.StyleSettings property.
The following sparkline types are available:
- area (AreaSparklineStyleSettings)
- line (LineSparklineStyleSettings)
- bars (BarSparklineStyleSettings)
- win-loss bars (WinLossSparklineStyleSettings)
See Also