Package com.positive.charts.util

Examples of com.positive.charts.util.VerticalAlignment


        area.height);
    g2.setFont(this.font);
    g2.setForeground(this.paint);
    TextBlockAnchor anchor = null;
    float y = 0.0f;
    final VerticalAlignment verticalAlignment = this.getVerticalAlignment();
    if (verticalAlignment == VerticalAlignment.TOP) {
      y = titleArea.y;
      anchor = TextBlockAnchor.TOP_RIGHT;
    } else if (verticalAlignment == VerticalAlignment.BOTTOM) {
      y = (titleArea.y + titleArea.height);
View Full Code Here

TOP

Related Classes of com.positive.charts.util.VerticalAlignment

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.