Back to Devexpress

DxPolarChartLineSeries<T, TArgument, TValue>.Width Property

blazor-devexpress-dot-blazor-dot-dxpolarchartlineseries-3-b9bd7421.md

latest1.4 KB
Original Source

DxPolarChartLineSeries<T, TArgument, TValue>.Width Property

Specifies the width of the line series.

Namespace : DevExpress.Blazor

Assembly : DevExpress.Blazor.v25.2.dll

NuGet Package : DevExpress.Blazor

Declaration

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

Property Value

TypeDefaultDescription
Int322

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:

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

See Also

DxPolarChartLineSeries<T, TArgument, TValue> Class

DxPolarChartLineSeries<T, TArgument, TValue> Members

DevExpress.Blazor Namespace