Back to Devexpress

LineSeriesStyle Class

maui-devexpress-dot-maui-dot-charts-4b230916.md

latest2.8 KB
Original Source

LineSeriesStyle Class

Stores line series appearance settings.

Namespace : DevExpress.Maui.Charts

Assembly : DevExpress.Maui.Charts.dll

NuGet Package : DevExpress.Maui.Charts

Declaration

csharp
public class LineSeriesStyle :
    PointSeriesStyle

The following members return LineSeriesStyle objects:

Example

To change the line series appearance, set the LineSeries.Style property to the LineSeriesStyle object. This object’s properties allow you to configure the appearance of the series line (Stroke, StrokeThickness) and point markers (MarkerSize, MarkerStyle).

xml
<dxc:LineSeries>
    <dxc:LineSeries.Style>
        <dxc:LineSeriesStyle Stroke="#7145a7" StrokeThickness="2" MarkerSize="8">
            <dxc:LineSeriesStyle.MarkerStyle>
                <dxc:MarkerStyle Fill="#7145a7"/>
            </dxc:LineSeriesStyle.MarkerStyle>
        </dxc:LineSeriesStyle>
    </dxc:LineSeries.Style>
</dxc:LineSeries>

Implements

IElementController

INotifyPropertyChanged

Inheritance

System.Object BindableObject Element ChartElementBase ChartElement StyleBase PointSeriesStyle LineSeriesStyle AreaSeriesStyle

Extension Methods

Yield<LineSeriesStyle>()

YieldIfNotNull<LineSeriesStyle>()

See Also

LineSeriesStyle Members

DevExpress.Maui.Charts Namespace