ChartDirector 7.1 (.NET Edition)

ColorAxis.setRoundedCorners


Usage

[C#]public void setRoundedCorners([ int r1 [, int r2 [, int r3 [, int r4 ]]]]);
[VB]Public Sub setRoundedCorners([ r1 As Integer [, r2 As Integer [, r3 As Integer [, r4 As Integer ]]]])

Description

Sets the border style of the bounding box to rounded corners.

Arguments

ArgumentDefaultDescription
r110The radius of the top-left rounded corner in pixels.
r2-1The radius of the top-right rounded corner in pixels. -1 means it is the same as the radius of the top-left corner.
r3-1The radius of the bottom-right rounded corner in pixels. -1 means it is the same as the radius of the top-left corner.
r4-1The radius of the bottom-left rounded corner in pixels. -1 means it is the same as the radius of the top-left corner.

Return Value

None