TiPlotChannel.DataBarPenWidth

TiPlotChannel

Specifies the pen width used when drawing the specified Data Point Bar.

property DataBarPenWidth[const Index: Integer : Integer;

Description

Use BarPenWidth to get or set the pen width used when drawing the specified Data Point Bar.

For example, if you specify an Index of 2 (Data Point #3), then you are referring to the Data Bar for Data Point Index 2 (Data Point #3).

As data points are added to the channel, the individual Data Bar Pen Width for each Data Point is automatically populated with the Overall Bar Pen Width property: BarPenWidth. You only need to set the DataBarPenWidth property when you want the Data Bar Pen Width for this Data Point to differ from the default.

Important Note! : This property only affects those channels with their DataStyle property set to ipdsFullFeature.

Example

Delphi

iComponent.Channel[0].DataBarPenWidth[100] := 2;

C++ Builder

iComponent->Channel[0]->DataBarPenWidth[100] = 2;

Contents | Index | Previous | Next