如何在JChart2D中更改轴颜色

时间:2015-01-22 13:09:55

标签: colors multiple-axes jchart2d

如何更改JChart2D中Axis的颜色。

到目前为止,我发现的最接近的事情是:

chart.setForeground(Color.BLUE);

不幸的是,这改变了所有方面,包括Axis和Grid。我正在寻找的是具有不同颜色的多个yAxis。

如何实现这一目标?

2 个答案:

答案 0 :(得分:1)

我修改并重新编译了库...

为此,在IAxis.java中添加了以下代码

 /**
   * The property key defining the <code>color</code> property. Use in
   * combination with
   * {@link #addPropertyChangeListener(String, PropertyChangeListener)}.
   */
  public static final String PROPERTY_COLOR = "IAxis.PROPERTY_COLOR";  

  /**
   * Returns the color of the axis
   * @return The chosen java.awt.Color or null if the decision for the color
   *         should be made by the corresponding <code>Chart2D</code>.
   */
  public Color getColor();

  /**
   * Set a <code>java.awt.Color</code> for this axis.
   * <p>
   * 
   * @param color
   *          the <tt>Color</tt> to set.
   */
  public abstract void setColor(Color color);

在AAxis.java中添加了以下代码:

  /** The color property. */
  private Color m_color = Color.black;

  /**
    * Get the <code>Color</code> this color will be painted with.
    * <p>
    * 
    * @return the <code>Color</code> of this instance
    */
  public final Color getColor() {
    return this.m_color;
  }

  /**
   * <p>
   * Set the <code>Color</code> this axis will be painted with.
   * </p>
   * 
   * @param color
   *          the <code>Color</code> this trace will be painted with.
   */
  public final void setColor(final Color color) {
    final Color oldValue = this.m_color;
    this.m_color = color;
    if (!this.m_color.equals(oldValue)) {
      this.m_propertyChangeSupport.firePropertyChange(IAxis.PROPERTY_COLOR, oldValue, this.m_color);
    }
  }

最后在paintAxisYLeft和paintAxisYRight

中修改了两个方法

添加

g2d.setColor(this.getColor());

行之前:

g2d.drawLine(xAxisLine, yAxisStart, xAxisLine, yAxisEnd);

并添加

g2d.setColor(this.getColor());

行之前:

tickPainter.paintYTick(xAxisLine, tmp, label.isMajorTick(), true, g2d);

希望这可以添加到下一个版本中......

答案 1 :(得分:0)

现在这不起作用。很久以前就有一个功能请求:http://sourceforge.net/p/jchart2d/feature-requests/51/

随意投票甚至提供补丁。

亲切的问候, Achim的