Skip to main content
All docs
V25.1
  • DxPolarChartLineSeries<T, TArgument, TValue>.Width Property

    Specifies the width of the line series.

    Namespace: DevExpress.Blazor

    Assembly: DevExpress.Blazor.v25.1.dll

    NuGet Package: DevExpress.Blazor

    Declaration

    [DefaultValue(2)]
    [Parameter]
    public int Width { get; set; }

    Property Value

    Type Default Description
    Int32 2

    The line width, in pixels.

    Remarks

    Use the Width property to specify the thickness of the line series.

    The following example sets the width of the series to 4 pixels:

    <DxPolarChart Data=@DataSource>
        <DxPolarChartLineSeries ArgumentField="@((DiscretePoint i) => i.Arg)"
                                ValueField="@((DiscretePoint i) => i.Day)"
                                Width="4">
        </DxPolarChartLineSeries>
    </DxPolarChart>
    

    Expand the argument axis width

    See Also