BarWidth

View as Markdown

Definition

The painted width of a ChartStyle bar. This value will updated as the ChartControl is resized.

Property Value

A double value representing the current width the chart bars

Syntax

BarWidth

Examples

1protected override void OnStateChange()
2{
3 if (State == State.SetDefaults)
4 {
5 Name = "Example ChartStyle";
6 ChartStyleType = (ChartStyleType) 52;
7 BarWidth = 1;
8 }
9}