Skip to main content
A newer version of this page is available. .

SeriesLabel.Indent Property

Gets or sets the distance between a series point and its series label.

Namespace: DevExpress.Xpf.Charts

Assembly: DevExpress.Xpf.Charts.v20.1.dll

NuGet Packages: DevExpress.WindowsDesktop.Wpf.Charts, DevExpress.Wpf.Charts

Declaration

public int Indent { get; set; }

Property Value

Type Description
Int32

An integer value which specifies the indent, in pixels.

Example

The following example demonstrates how to modify the SeriesLabel.ConnectorVisible and SeriesLabel.Indent properties of a Series.Label object in XAML. Also, it illustrates how to set the MarkerSeries2D.Angle property value.

<dxc:PointSeries2D.Label>
    <dxc:SeriesLabel ConnectorVisible="False" Indent="15" dxc:MarkerSeries2D.Angle="90" />
</dxc:PointSeries2D.Label>

The following code snippet (auto-collected from DevExpress Examples) contains a reference to the Indent 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.

See Also