IChart.RoundJoint

Syntax

RoundJoint: Boolean;

Description

The RoundJoint property determines whether corners of chart bars can be rounded.

Comments

If the property is set to True, the corners are rounded. If the property is set to False, the corners are not displayed.

The default value of this property is True.

Example

This example assumes that there is the Chart object of the IChart type.

Sub User;

Var

Chart : IChart;

Begin

Chart.RoundJoint := False;

End Sub User;

After executing the example rounding corners for series bars is disabled.

See also:

IChart