Package com.positive.charting.annotations

Examples of com.positive.charting.annotations.CategoryAnnotation


  protected void drawAnnotations(final GC g2, final Rectangle dataArea) {

    if (this.getAnnotations() != null) {
      final Iterator iterator = this.getAnnotations().iterator();
      while (iterator.hasNext()) {
        final CategoryAnnotation annotation = (CategoryAnnotation) iterator
            .next();
        annotation.draw(g2, this, dataArea, this.getDomainAxis(), this
            .getRangeAxis());
      }
    }

  }
View Full Code Here

TOP

Related Classes of com.positive.charting.annotations.CategoryAnnotation

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.