Chart FX for Java 6.5

SoftwareFX.ChartFX.Annotation
Class AnnotationCircle

java.lang.Object
  extended by SoftwareFX.ChartFX.Annotation.AnnotationObject
      extended by SoftwareFX.ChartFX.Annotation.AnnotationCircle

public final class AnnotationCircle
extends AnnotationObject

Provides access to the AnnotationCircle object.

The AnnotationCircle Class allows you to create annotation objects in the shape of circles. All the supported members of this class are inherited from the AnnotationObject Class .

Below is an example of an annotation circle:

annot = new SoftwareFX.ChartFX.Annotation.AnnotationX();
SoftwareFX.ChartFX.Annotation.AnnotationCircle circle = new SoftwareFX.ChartFX.Annotation.AnnotationCircle();
annot.getList().add(circle);
chart1.getExtensions().add(annot);
circle.setColor(java.awt.Color.WHITE);
circle.setHeight(40);
circle.setWidth(40);
circle.attach(3, 70);
circle.getBorder().setColor(java.awt.Color.RED);


Constructor Summary
AnnotationCircle()
           
 
Method Summary
 
Methods inherited from class SoftwareFX.ChartFX.Annotation.AnnotationObject
attach, attach, attach, detach, flip, getAnchor, getBorder, getColor, getHeight, getLeft, getLink, getObjectBounds, getPattern, getTag, getTop, getURL, getURLTarget, getWidth, isAllowModify, isAllowMove, isDrawingArea, isPaintBefore, isVisible, refresh, rotate, setAllowModify, setAllowMove, setAnchor, setBorder, setColor, setDrawingArea, setHeight, setLeft, setObjectBounds, setPaintBefore, setPattern, setTag, setTop, setURL, setURLTarget, setVisible, setWidth
 
Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

AnnotationCircle

public AnnotationCircle()

http://www.softwarefx.com

2007 Software FX, Inc. All Rights Reserved. Chart FX is a registered trademark of Software FX, Inc
All other names are trademarks or registered trademarks of their respective owners.