[VB] | Public Sub circle(cx As Integer, cy As Integer, rx As Integer, ry As Integer, edgeColor As Integer, fillColor As Integer) |
[C#] | public void circle(int cx, int cy, int rx, int ry, int edgeColor, int fillColor); |
ChartDirector 5.1 (.NET Edition)
DrawArea.circle
Usage
[VB] | Public Sub circle(cx As Integer, cy As Integer, rx As Integer, ry As Integer, edgeColor As Integer, fillColor As Integer) |
[C#] | public void circle(int cx, int cy, int rx, int ry, int edgeColor, int fillColor); |
Description
Arguments
Argument | Default | Description |
---|---|---|
cx | (Mandatory) | The x coordinate of the center of the circle or ellipse. |
cy | (Mandatory) | The y coordinate of the center of the circle or ellipse. |
rx | (Mandatory) | The horizontal radius of the circle or ellipse. |
ry | (Mandatory) | The vertical radius of the circle or ellipse. |
edgeColor | (Mandatory) | The border color. To disable border, set the edgeColor the same as the fillColor. |
fillColor | (Mandatory) | The fill color. To disable filling, set the fillColor to Transparent. |
Return Value