Java Code Examples for org.jfree.chart.axis.PeriodAxis#setLabelInfo()

The following examples show how to use org.jfree.chart.axis.PeriodAxis#setLabelInfo() . You can vote up the ones you like or vote down the ones you don't like, and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example 1
Source File: StandardChartTheme.java    From openstock with GNU General Public License v3.0 5 votes vote down vote up
/**
 * Applies the attributes for this theme to a {@link PeriodAxis}.
 *
 * @param axis  the axis (<code>null</code> not permitted).
 */
protected void applyToPeriodAxis(PeriodAxis axis) {
    PeriodAxisLabelInfo[] info = axis.getLabelInfo();
    for (int i = 0; i < info.length; i++) {
        PeriodAxisLabelInfo e = info[i];
        PeriodAxisLabelInfo n = new PeriodAxisLabelInfo(e.getPeriodClass(),
                e.getDateFormat(), e.getPadding(), this.regularFont,
                this.tickLabelPaint, e.getDrawDividers(),
                e.getDividerStroke(), e.getDividerPaint());
        info[i] = n;
    }
    axis.setLabelInfo(info);
}
 
Example 2
Source File: StandardChartTheme.java    From ccu-historian with GNU General Public License v3.0 5 votes vote down vote up
/**
 * Applies the attributes for this theme to a {@link PeriodAxis}.
 *
 * @param axis  the axis (<code>null</code> not permitted).
 */
protected void applyToPeriodAxis(PeriodAxis axis) {
    PeriodAxisLabelInfo[] info = axis.getLabelInfo();
    for (int i = 0; i < info.length; i++) {
        PeriodAxisLabelInfo e = info[i];
        PeriodAxisLabelInfo n = new PeriodAxisLabelInfo(e.getPeriodClass(),
                e.getDateFormat(), e.getPadding(), this.regularFont,
                this.tickLabelPaint, e.getDrawDividers(),
                e.getDividerStroke(), e.getDividerPaint());
        info[i] = n;
    }
    axis.setLabelInfo(info);
}
 
Example 3
Source File: StandardChartTheme.java    From SIMVA-SoS with Apache License 2.0 5 votes vote down vote up
/**
 * Applies the attributes for this theme to a {@link PeriodAxis}.
 *
 * @param axis  the axis (<code>null</code> not permitted).
 */
protected void applyToPeriodAxis(PeriodAxis axis) {
    PeriodAxisLabelInfo[] info = axis.getLabelInfo();
    for (int i = 0; i < info.length; i++) {
        PeriodAxisLabelInfo e = info[i];
        PeriodAxisLabelInfo n = new PeriodAxisLabelInfo(e.getPeriodClass(),
                e.getDateFormat(), e.getPadding(), this.regularFont,
                this.tickLabelPaint, e.getDrawDividers(),
                e.getDividerStroke(), e.getDividerPaint());
        info[i] = n;
    }
    axis.setLabelInfo(info);
}
 
Example 4
Source File: StandardChartTheme.java    From ECG-Viewer with GNU General Public License v2.0 5 votes vote down vote up
/**
 * Applies the attributes for this theme to a {@link PeriodAxis}.
 *
 * @param axis  the axis (<code>null</code> not permitted).
 */
protected void applyToPeriodAxis(PeriodAxis axis) {
    PeriodAxisLabelInfo[] info = axis.getLabelInfo();
    for (int i = 0; i < info.length; i++) {
        PeriodAxisLabelInfo e = info[i];
        PeriodAxisLabelInfo n = new PeriodAxisLabelInfo(e.getPeriodClass(),
                e.getDateFormat(), e.getPadding(), this.regularFont,
                this.tickLabelPaint, e.getDrawDividers(),
                e.getDividerStroke(), e.getDividerPaint());
        info[i] = n;
    }
    axis.setLabelInfo(info);
}
 
Example 5
Source File: StandardChartTheme.java    From astor with GNU General Public License v2.0 5 votes vote down vote up
/**
 * Applies the attributes for this theme to a {@link PeriodAxis}.
 *
 * @param axis  the axis (<code>null</code> not permitted).
 */
protected void applyToPeriodAxis(PeriodAxis axis) {
    PeriodAxisLabelInfo[] info = axis.getLabelInfo();
    for (int i = 0; i < info.length; i++) {
        PeriodAxisLabelInfo e = info[i];
        PeriodAxisLabelInfo n = new PeriodAxisLabelInfo(e.getPeriodClass(),
                e.getDateFormat(), e.getPadding(), this.regularFont,
                this.tickLabelPaint, e.getDrawDividers(),
                e.getDividerStroke(), e.getDividerPaint());
        info[i] = n;
    }
    axis.setLabelInfo(info);
}
 
Example 6
Source File: StandardChartTheme.java    From buffer_bci with GNU General Public License v3.0 5 votes vote down vote up
/**
 * Applies the attributes for this theme to a {@link PeriodAxis}.
 *
 * @param axis  the axis (<code>null</code> not permitted).
 */
protected void applyToPeriodAxis(PeriodAxis axis) {
    PeriodAxisLabelInfo[] info = axis.getLabelInfo();
    for (int i = 0; i < info.length; i++) {
        PeriodAxisLabelInfo e = info[i];
        PeriodAxisLabelInfo n = new PeriodAxisLabelInfo(e.getPeriodClass(),
                e.getDateFormat(), e.getPadding(), this.regularFont,
                this.tickLabelPaint, e.getDrawDividers(),
                e.getDividerStroke(), e.getDividerPaint());
        info[i] = n;
    }
    axis.setLabelInfo(info);
}
 
Example 7
Source File: StandardChartTheme.java    From buffer_bci with GNU General Public License v3.0 5 votes vote down vote up
/**
 * Applies the attributes for this theme to a {@link PeriodAxis}.
 *
 * @param axis  the axis (<code>null</code> not permitted).
 */
protected void applyToPeriodAxis(PeriodAxis axis) {
    PeriodAxisLabelInfo[] info = axis.getLabelInfo();
    for (int i = 0; i < info.length; i++) {
        PeriodAxisLabelInfo e = info[i];
        PeriodAxisLabelInfo n = new PeriodAxisLabelInfo(e.getPeriodClass(),
                e.getDateFormat(), e.getPadding(), this.regularFont,
                this.tickLabelPaint, e.getDrawDividers(),
                e.getDividerStroke(), e.getDividerPaint());
        info[i] = n;
    }
    axis.setLabelInfo(info);
}
 
Example 8
Source File: PeriodAxisTests.java    From astor with GNU General Public License v2.0 4 votes vote down vote up
/**
 * Confirm that the equals() method can distinguish all the required fields.
 */
public void testEquals() {

    PeriodAxis a1 = new PeriodAxis("Test");
    PeriodAxis a2 = new PeriodAxis("Test");
    assertTrue(a1.equals(a2));
    assertTrue(a2.equals(a1));

    a1.setFirst(new Year(2000));
    assertFalse(a1.equals(a2));
    a2.setFirst(new Year(2000));
    assertTrue(a1.equals(a2));

    a1.setLast(new Year(2004));
    assertFalse(a1.equals(a2));
    a2.setLast(new Year(2004));
    assertTrue(a1.equals(a2));

    a1.setTimeZone(TimeZone.getTimeZone("Pacific/Auckland"));
    assertFalse(a1.equals(a2));
    a2.setTimeZone(TimeZone.getTimeZone("Pacific/Auckland"));
    assertTrue(a1.equals(a2));

    a1.setAutoRangeTimePeriodClass(Quarter.class);
    assertFalse(a1.equals(a2));
    a2.setAutoRangeTimePeriodClass(Quarter.class);
    assertTrue(a1.equals(a2));

    PeriodAxisLabelInfo info[] = new PeriodAxisLabelInfo[1];
    info[0] = new PeriodAxisLabelInfo(Month.class,
            new SimpleDateFormat("MMM"));

    a1.setLabelInfo(info);
    assertFalse(a1.equals(a2));
    a2.setLabelInfo(info);
    assertTrue(a1.equals(a2));

    a1.setMajorTickTimePeriodClass(Minute.class);
    assertFalse(a1.equals(a2));
    a2.setMajorTickTimePeriodClass(Minute.class);
    assertTrue(a1.equals(a2));

    a1.setMinorTickMarksVisible(!a1.isMinorTickMarksVisible());
    assertFalse(a1.equals(a2));
    a2.setMinorTickMarksVisible(a1.isMinorTickMarksVisible());
    assertTrue(a1.equals(a2));

    a1.setMinorTickTimePeriodClass(Minute.class);
    assertFalse(a1.equals(a2));
    a2.setMinorTickTimePeriodClass(Minute.class);
    assertTrue(a1.equals(a2));

    Stroke s = new BasicStroke(1.23f);
    a1.setMinorTickMarkStroke(s);
    assertFalse(a1.equals(a2));
    a2.setMinorTickMarkStroke(s);
    assertTrue(a1.equals(a2));

    a1.setMinorTickMarkPaint(Color.blue);
    assertFalse(a1.equals(a2));
    a2.setMinorTickMarkPaint(Color.blue);
    assertTrue(a1.equals(a2));

}
 
Example 9
Source File: PeriodAxisTests.java    From astor with GNU General Public License v2.0 4 votes vote down vote up
/**
 * Confirm that the equals() method can distinguish all the required fields.
 */
public void testEquals() {
    
    PeriodAxis a1 = new PeriodAxis("Test");
    PeriodAxis a2 = new PeriodAxis("Test");
    assertTrue(a1.equals(a2));
    assertTrue(a2.equals(a1));
    
    a1.setFirst(new Year(2000));
    assertFalse(a1.equals(a2));
    a2.setFirst(new Year(2000));
    assertTrue(a1.equals(a2));
    
    a1.setLast(new Year(2004));
    assertFalse(a1.equals(a2));
    a2.setLast(new Year(2004));
    assertTrue(a1.equals(a2));

    a1.setTimeZone(TimeZone.getTimeZone("Pacific/Auckland"));
    assertFalse(a1.equals(a2));
    a2.setTimeZone(TimeZone.getTimeZone("Pacific/Auckland"));
    assertTrue(a1.equals(a2));
    
    a1.setAutoRangeTimePeriodClass(Quarter.class);
    assertFalse(a1.equals(a2));
    a2.setAutoRangeTimePeriodClass(Quarter.class);
    assertTrue(a1.equals(a2));
    
    PeriodAxisLabelInfo info[] = new PeriodAxisLabelInfo[1];
    info[0] = new PeriodAxisLabelInfo(
        Month.class, new SimpleDateFormat("MMM")
    );
    
    a1.setLabelInfo(info);
    assertFalse(a1.equals(a2));
    a2.setLabelInfo(info);
    assertTrue(a1.equals(a2));
    
    a1.setMajorTickTimePeriodClass(Minute.class);
    assertFalse(a1.equals(a2));
    a2.setMajorTickTimePeriodClass(Minute.class);
    assertTrue(a1.equals(a2));
    
    a1.setMinorTickMarksVisible(!a1.isMinorTickMarksVisible());
    assertFalse(a1.equals(a2));
    a2.setMinorTickMarksVisible(a1.isMinorTickMarksVisible());
    assertTrue(a1.equals(a2));
    
    a1.setMinorTickTimePeriodClass(Minute.class);
    assertFalse(a1.equals(a2));
    a2.setMinorTickTimePeriodClass(Minute.class);
    assertTrue(a1.equals(a2));

    Stroke s = new BasicStroke(1.23f);
    a1.setMinorTickMarkStroke(s);
    assertFalse(a1.equals(a2));
    a2.setMinorTickMarkStroke(s);
    assertTrue(a1.equals(a2));

    a1.setMinorTickMarkPaint(Color.blue);
    assertFalse(a1.equals(a2));
    a2.setMinorTickMarkPaint(Color.blue);
    assertTrue(a1.equals(a2));

}