JFreeChart自定义X轴标签

4

我有多个数据系列。

  • 系列是年份:2013、2014、2015等。
  • 数据是给定年份内日期和值的组合。
  • 由于需要按年份对数据进行分类,我在x轴上使用“一年中的日”值,范围在1到366之间。因此,给定年份的值如下所示:(1,80)、(30,100)、(60,71)......(255,130)

示例图表:

enter image description here

我的问题是,X轴包含“一年中的日”值,但我必须在那里放置月份名称。不幸的是,使用简单的DateAxis不是一个选项,因为X值是日号(而不是日期),而且据我所知,没有日期格式可以将“335”转换为“十二月”。DateAxis的另一个问题是它表示时间点,并且为任何时间点提供单独的X轴标签。但是,我需要写出准确时间点的标签。即:仅在每个月的开头。我真正想要的是这样的东西:

enter image description here

例如,我想显示区域,而不是在月初/月末放置“刻度线”。更困难的是,各月份的长度不同。由于闰年的二月有29天,因此我认为我必须使用固定点(一年中的日值)。

我是否需要为此编写自定义轴渲染器?如何操作?是否有更简单的解决方案可以解决我的问题?


还可以考虑使用自定义的SymbolAxis - trashgod
1个回答

6
import java.awt.Graphics2D;
import java.awt.font.LineMetrics;
import java.awt.geom.Rectangle2D;
import java.util.List;
import java.awt.Color;

import org.jfree.chart.axis.AxisState;
import org.jfree.chart.axis.NumberAxis;
import org.jfree.chart.axis.ValueTick;
import org.jfree.text.TextUtilities;
import org.jfree.ui.RectangleEdge;
import org.jfree.ui.TextAnchor;



public class DayOfYearAxis extends NumberAxis {
    /* Day of the year values for month end days. */
    public static final Integer[] MONTH_LENGTHS = {
            31,29,31,30,31,30,31,31,30,31,30,31
    };
    public static final String[] MONTH_NAMES = {
        "Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sep","Oct","Nov","Dec"
};

    protected AxisState  drawTickMarksAndLabels(Graphics2D g2,double cursor,Rectangle2D plotArea,Rectangle2D dataArea,RectangleEdge edge) {
        AxisState state = new AxisState(cursor);

        g2.setFont(getTickLabelFont());

        double ol = getTickMarkOutsideLength();
        double il = getTickMarkInsideLength();
        int y = (int)(Math.round(cursor-ol));
        LineMetrics lineMetrics = g2.getFont().getLineMetrics("Ápr", g2.getFontRenderContext());        
        int h = (int) (lineMetrics.getHeight() + 6);

        List<ValueTick> ticks = refreshTicks(g2, state, dataArea, edge);
        state.setTicks(ticks);

        /* Last x point */
        ValueTick tick = ticks.get(ticks.size()-1);     
        float[] prevAnchorPoint = calculateAnchorPoint(tick, cursor,dataArea, edge);
        double xmax = prevAnchorPoint[0];
        double max_day = tick.getValue();

        /* First x point */
        tick = ticks.get(0);
        prevAnchorPoint = calculateAnchorPoint(tick, cursor,dataArea, edge);
        double xmin = Math.round(prevAnchorPoint[0]);
        double min_day = tick.getValue();       
        double days_visible = max_day - min_day + 1;
        /* 0.1 day horizontal gap. */
        double gap = 0.1*(xmax-xmin)/days_visible;

        System.out.println("min_day "+min_day+" max_day"+max_day);

        g2.setFont(getTickLabelFont());
        g2.setColor(Color.BLACK);
        int start_day = 0;
        for (int month=0;month<12;month++) {
            int end_day = start_day + MONTH_LENGTHS[month] - 1;
            System.out.println("start-end "+start_day+" "+end_day);
            if ( (start_day>=min_day) && (start_day<=max_day) && (end_day>=min_day) && (end_day<=max_day) ) {
                double factor_x1 = (start_day - min_day) / days_visible;
                double x1 = xmin + (xmax-xmin)* factor_x1;
                double factor_x2 = (end_day - min_day) / days_visible;
                double x2 = xmin + (xmax-xmin)* factor_x2;
                System.out.println("month="+month+", start_day="+start_day+" end_day="+end_day+" x1="+x1+" x2="+x2);
                g2.setColor(Color.LIGHT_GRAY);
                g2.fill3DRect((int)(x1+gap),y,(int)(x2-x1-2*gap),h,true);
                g2.setColor(Color.BLACK);
                TextUtilities.drawAlignedString(MONTH_NAMES[month], g2, (float)((x1+x2)/2), (float)(y+ol), TextAnchor.TOP_CENTER);
            }           
            start_day += MONTH_LENGTHS[month];
        }
        return state;
    }

}

使用方法:

    JFreeChart chart = ChartFactory.createXYLineChart(...);
    DayOfYearAxis doyAxis = new DayOfYearAxis();
    /* optional
    doyAxis.setAutoRange(false);
    doyAxis.setRange(new Range(min_yday, max_yday));
    */
    chart.getXYPlot().setDomainAxis(doyAxis);        

示例输出(使用匈牙利月份名称):

输入图像说明


网页内容由stack overflow 提供, 点击上面的
可以查看英文原文,
原文链接