Example usage for org.jfree.chart.ui VerticalAlignment BOTTOM

List of usage examples for org.jfree.chart.ui VerticalAlignment BOTTOM

Introduction

In this page you can find the example usage for org.jfree.chart.ui VerticalAlignment BOTTOM.

Prototype

VerticalAlignment BOTTOM

To view the source code for org.jfree.chart.ui VerticalAlignment BOTTOM.

Click Source Link

Document

Bottom alignment.

Usage

From source file:org.n52.io.type.quantity.handler.img.ChartIoHandler.java

private void addNotice(JFreeChart chart) {
    TextTitle notice = new TextTitle();
    String msg = i18n.get("msg.io.chart.notice");
    if (msg != null && !msg.isEmpty()) {
        notice.setText(msg);/* w  w  w .j ava  2  s .c  om*/
        notice.setPaint(Color.BLACK);
        notice.setFont(LabelConstants.FONT_LABEL_SMALL);
        notice.setPosition(RectangleEdge.BOTTOM);
        notice.setHorizontalAlignment(HorizontalAlignment.RIGHT);
        notice.setVerticalAlignment(VerticalAlignment.BOTTOM);
        notice.setPadding(new RectangleInsets(0, 0, 20, 20));
        chart.addSubtitle(notice);
    }
}