first commit
This commit is contained in:
193
hrmsEjb/net/sf/jasperreports/charts/base/JRBaseHighLowPlot.java
Normal file
193
hrmsEjb/net/sf/jasperreports/charts/base/JRBaseHighLowPlot.java
Normal file
@@ -0,0 +1,193 @@
|
||||
package net.sf.jasperreports.charts.base;
|
||||
|
||||
import java.awt.Color;
|
||||
import net.sf.jasperreports.charts.JRHighLowPlot;
|
||||
import net.sf.jasperreports.charts.JRTimeAxisFormat;
|
||||
import net.sf.jasperreports.charts.JRValueAxisFormat;
|
||||
import net.sf.jasperreports.engine.JRChart;
|
||||
import net.sf.jasperreports.engine.JRChartPlot;
|
||||
import net.sf.jasperreports.engine.JRExpression;
|
||||
import net.sf.jasperreports.engine.JRExpressionCollector;
|
||||
import net.sf.jasperreports.engine.JRFont;
|
||||
import net.sf.jasperreports.engine.JRStyleContainer;
|
||||
import net.sf.jasperreports.engine.base.JRBaseChartPlot;
|
||||
import net.sf.jasperreports.engine.base.JRBaseFont;
|
||||
import net.sf.jasperreports.engine.base.JRBaseObjectFactory;
|
||||
import net.sf.jasperreports.engine.util.JRStyleResolver;
|
||||
|
||||
public class JRBaseHighLowPlot extends JRBaseChartPlot implements JRHighLowPlot {
|
||||
private static final long serialVersionUID = 10200L;
|
||||
|
||||
public static final String PROPERTY_SHOW_CLOSE_TICKS = "showCloseTicks";
|
||||
|
||||
public static final String PROPERTY_SHOW_OPEN_TICKS = "showOpenTicks";
|
||||
|
||||
protected JRExpression timeAxisLabelExpression = null;
|
||||
|
||||
protected JRFont timeAxisLabelFont = null;
|
||||
|
||||
protected Color timeAxisLabelColor = null;
|
||||
|
||||
protected JRFont timeAxisTickLabelFont = null;
|
||||
|
||||
protected Color timeAxisTickLabelColor = null;
|
||||
|
||||
protected String timeAxisTickLabelMask = null;
|
||||
|
||||
protected Color timeAxisLineColor = null;
|
||||
|
||||
protected JRExpression valueAxisLabelExpression = null;
|
||||
|
||||
protected JRFont valueAxisLabelFont = null;
|
||||
|
||||
protected Color valueAxisLabelColor = null;
|
||||
|
||||
protected JRFont valueAxisTickLabelFont = null;
|
||||
|
||||
protected Color valueAxisTickLabelColor = null;
|
||||
|
||||
protected String valueAxisTickLabelMask = null;
|
||||
|
||||
protected Color valueAxisLineColor = null;
|
||||
|
||||
protected boolean isShowOpenTicks = false;
|
||||
|
||||
protected boolean isShowCloseTicks = false;
|
||||
|
||||
public JRBaseHighLowPlot(JRChartPlot highLowPlot, JRChart chart) {
|
||||
super(highLowPlot, chart);
|
||||
}
|
||||
|
||||
public JRBaseHighLowPlot(JRHighLowPlot highLowPlot, JRBaseObjectFactory factory) {
|
||||
super((JRChartPlot)highLowPlot, factory);
|
||||
this.isShowOpenTicks = highLowPlot.isShowOpenTicks();
|
||||
this.isShowCloseTicks = highLowPlot.isShowCloseTicks();
|
||||
this.timeAxisLabelExpression = factory.getExpression(highLowPlot.getTimeAxisLabelExpression());
|
||||
this.timeAxisLabelFont = (JRFont)new JRBaseFont(null, null, (JRStyleContainer)highLowPlot.getChart(), highLowPlot.getTimeAxisLabelFont());
|
||||
this.timeAxisLabelColor = highLowPlot.getOwnTimeAxisLabelColor();
|
||||
this.timeAxisTickLabelFont = (JRFont)new JRBaseFont(null, null, (JRStyleContainer)highLowPlot.getChart(), highLowPlot.getTimeAxisTickLabelFont());
|
||||
this.timeAxisTickLabelColor = highLowPlot.getOwnTimeAxisTickLabelColor();
|
||||
this.timeAxisTickLabelMask = highLowPlot.getTimeAxisTickLabelMask();
|
||||
this.timeAxisLineColor = highLowPlot.getTimeAxisLineColor();
|
||||
this.valueAxisLabelExpression = factory.getExpression(highLowPlot.getValueAxisLabelExpression());
|
||||
this.valueAxisLabelFont = (JRFont)new JRBaseFont(null, null, (JRStyleContainer)highLowPlot.getChart(), highLowPlot.getValueAxisLabelFont());
|
||||
this.valueAxisLabelColor = highLowPlot.getOwnValueAxisLabelColor();
|
||||
this.valueAxisTickLabelFont = (JRFont)new JRBaseFont(null, null, (JRStyleContainer)highLowPlot.getChart(), highLowPlot.getValueAxisTickLabelFont());
|
||||
this.valueAxisTickLabelColor = highLowPlot.getOwnValueAxisTickLabelColor();
|
||||
this.valueAxisTickLabelMask = highLowPlot.getValueAxisTickLabelMask();
|
||||
this.valueAxisLineColor = highLowPlot.getValueAxisTickLabelColor();
|
||||
}
|
||||
|
||||
public JRExpression getTimeAxisLabelExpression() {
|
||||
return this.timeAxisLabelExpression;
|
||||
}
|
||||
|
||||
public JRFont getTimeAxisLabelFont() {
|
||||
return this.timeAxisLabelFont;
|
||||
}
|
||||
|
||||
public Color getTimeAxisLabelColor() {
|
||||
return JRStyleResolver.getTimeAxisLabelColor((JRTimeAxisFormat)this, (JRChartPlot)this);
|
||||
}
|
||||
|
||||
public Color getOwnTimeAxisLabelColor() {
|
||||
return this.timeAxisLabelColor;
|
||||
}
|
||||
|
||||
public JRFont getTimeAxisTickLabelFont() {
|
||||
return this.timeAxisTickLabelFont;
|
||||
}
|
||||
|
||||
public Color getTimeAxisTickLabelColor() {
|
||||
return JRStyleResolver.getTimeAxisTickLabelColor((JRTimeAxisFormat)this, (JRChartPlot)this);
|
||||
}
|
||||
|
||||
public Color getOwnTimeAxisTickLabelColor() {
|
||||
return this.timeAxisTickLabelColor;
|
||||
}
|
||||
|
||||
public String getTimeAxisTickLabelMask() {
|
||||
return this.timeAxisTickLabelMask;
|
||||
}
|
||||
|
||||
public Color getTimeAxisLineColor() {
|
||||
return JRStyleResolver.getTimeAxisLineColor((JRTimeAxisFormat)this, (JRChartPlot)this);
|
||||
}
|
||||
|
||||
public Color getOwnTimeAxisLineColor() {
|
||||
return this.timeAxisLineColor;
|
||||
}
|
||||
|
||||
public JRExpression getValueAxisLabelExpression() {
|
||||
return this.valueAxisLabelExpression;
|
||||
}
|
||||
|
||||
public JRFont getValueAxisLabelFont() {
|
||||
return this.valueAxisLabelFont;
|
||||
}
|
||||
|
||||
public Color getValueAxisLabelColor() {
|
||||
return JRStyleResolver.getValueAxisLabelColor((JRValueAxisFormat)this, (JRChartPlot)this);
|
||||
}
|
||||
|
||||
public Color getOwnValueAxisLabelColor() {
|
||||
return this.valueAxisLabelColor;
|
||||
}
|
||||
|
||||
public JRFont getValueAxisTickLabelFont() {
|
||||
return this.valueAxisTickLabelFont;
|
||||
}
|
||||
|
||||
public Color getValueAxisTickLabelColor() {
|
||||
return JRStyleResolver.getValueAxisTickLabelColor((JRValueAxisFormat)this, (JRChartPlot)this);
|
||||
}
|
||||
|
||||
public Color getOwnValueAxisTickLabelColor() {
|
||||
return this.valueAxisTickLabelColor;
|
||||
}
|
||||
|
||||
public String getValueAxisTickLabelMask() {
|
||||
return this.valueAxisTickLabelMask;
|
||||
}
|
||||
|
||||
public Color getValueAxisLineColor() {
|
||||
return JRStyleResolver.getValueAxisLineColor((JRValueAxisFormat)this, (JRChartPlot)this);
|
||||
}
|
||||
|
||||
public Color getOwnValueAxisLineColor() {
|
||||
return this.valueAxisLineColor;
|
||||
}
|
||||
|
||||
public boolean isShowOpenTicks() {
|
||||
return this.isShowOpenTicks;
|
||||
}
|
||||
|
||||
public void setShowOpenTicks(boolean showOpenTicks) {
|
||||
boolean old = this.isShowOpenTicks;
|
||||
this.isShowOpenTicks = showOpenTicks;
|
||||
getEventSupport().firePropertyChange("showOpenTicks", old, this.isShowOpenTicks);
|
||||
}
|
||||
|
||||
public boolean isShowCloseTicks() {
|
||||
return this.isShowCloseTicks;
|
||||
}
|
||||
|
||||
public void setShowCloseTicks(boolean showCloseTicks) {
|
||||
boolean old = this.isShowCloseTicks;
|
||||
this.isShowCloseTicks = showCloseTicks;
|
||||
getEventSupport().firePropertyChange("showCloseTicks", old, this.isShowCloseTicks);
|
||||
}
|
||||
|
||||
public void collectExpressions(JRExpressionCollector collector) {
|
||||
collector.collect(this);
|
||||
}
|
||||
|
||||
public Object clone(JRChart parentChart) {
|
||||
JRBaseHighLowPlot clone = (JRBaseHighLowPlot)super.clone(parentChart);
|
||||
if (this.timeAxisLabelExpression != null)
|
||||
clone.timeAxisLabelExpression = (JRExpression)this.timeAxisLabelExpression.clone();
|
||||
if (this.valueAxisLabelExpression != null)
|
||||
clone.valueAxisLabelExpression = (JRExpression)this.valueAxisLabelExpression.clone();
|
||||
return clone;
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user