Point.addCircle()

The Point.addCircle() method adds a circle to a Point. Under the hood, this will call Point.attr() as circles are added by setting attributes. Refer to Drawing circles for more details.

Signature

Javascript
Point point.addCircle(
  number radius,
  string className
)
TIP|

This method is chainable as it returns the Point object

Example