Skip to main content

BarSeriesStyle.StrokeThickness Property

Gets or sets the bar stroke thickness.

Namespace: DevExpress.XamarinForms.Charts

Assembly: DevExpress.XamarinForms.Charts.dll

NuGet Package: DevExpress.XamarinForms.Charts

Declaration

public float StrokeThickness { get; set; }

Property Value

Type Description
Single

The thickness of a bar stroke, in scale-independent units.

Remarks

To specify the bar stroke color, use the Stroke property.

Example

This example demonstrates how to customize the bar series appearance (bar color and stroke). To do this, assign the BarSeriesStyle object with the specified settings to the Style property of the bar series.

Bar Series Style

<dxc:ChartView>
  <dxc:ChartView.Series>
      <dxc:BarSeries x:Name="barSeries">
          <dxc:BarSeries.Style>
              <dxc:BarSeriesStyle Fill="MediumSeaGreen" Stroke="SeaGreen" StrokeThickness="10"/>
          </dxc:BarSeries.Style>
      </dxc:BarSeries>
  </dxc:ChartView.Series>
</dxc:ChartView>
See Also