wpf-devexpress-dot-xpf-dot-charts-dot-constantline-288794d3.md
Gets or sets the constant line title.
Namespace : DevExpress.Xpf.Charts
Assembly : DevExpress.Xpf.Charts.v25.2.dll
NuGet Package : DevExpress.Wpf.Charts
public ConstantLineTitle Title { get; set; }
Public Property Title As ConstantLineTitle
| Type | Description |
|---|---|
| ConstantLineTitle |
A ConstantLineTitle object.
|
The following code snippets (auto-collected from DevExpress Examples) contain references to the Title property.
Note
The algorithm used to collect these code examples remains a work in progress. Accordingly, the links and snippets below may produce inaccurate results. If you encounter an issue with code examples below, please use the feedback form on this page to report the issue.
dashboard-constant-lines/CS/ConstantLineExtension.WPF/ConstantLinesConverter.cs#L39
customConstantLine.Color.B));
line.Title = new ConstantLineTitle();
line.Title.Content = customConstantLine.LabelText;
line.LineStyle.DashStyle = DashStyles.Dash;
line.Title = new ConstantLineTitle();
line.Title.Content = "Value: " + moduleData.Value;
line.LineStyle.DashStyle = DashStyles.Dash
line.Title = New ConstantLineTitle()
line.Title.Content = "Value: " & moduleData.Value
See Also