first commit

This commit is contained in:
2025-07-28 13:56:49 +05:30
commit e9eb805edb
3438 changed files with 520990 additions and 0 deletions

View File

@@ -0,0 +1,162 @@
package net.sf.jasperreports.charts.fill;
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.JRChartPlot;
import net.sf.jasperreports.engine.JRExpression;
import net.sf.jasperreports.engine.JRFont;
import net.sf.jasperreports.engine.JRStyleContainer;
import net.sf.jasperreports.engine.base.JRBaseFont;
import net.sf.jasperreports.engine.fill.JRFillChartPlot;
import net.sf.jasperreports.engine.fill.JRFillObjectFactory;
import net.sf.jasperreports.engine.util.JRStyleResolver;
public class JRFillHighLowPlot extends JRFillChartPlot implements JRHighLowPlot {
protected JRFont timeAxisLabelFont = null;
protected Color timeAxisLabelColor = null;
protected JRFont timeAxisTickLabelFont = null;
protected Color timeAxisTickLabelColor = null;
protected Color timeAxisLineColor = null;
protected JRFont valueAxisLabelFont = null;
protected Color valueAxisLabelColor = null;
protected JRFont valueAxisTickLabelFont = null;
protected Color valueAxisTickLabelColor = null;
protected Color valueAxisLineColor = null;
public JRFillHighLowPlot(JRHighLowPlot highLowPlot, JRFillObjectFactory factory) {
super((JRChartPlot)highLowPlot, factory);
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.timeAxisLineColor = highLowPlot.getTimeAxisLineColor();
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.valueAxisLineColor = highLowPlot.getValueAxisTickLabelColor();
}
public JRExpression getTimeAxisLabelExpression() {
return ((JRHighLowPlot)this.parent).getTimeAxisLabelExpression();
}
public JRFont getTimeAxisLabelFont() {
return this.timeAxisLabelFont;
}
public void setTimeAxisLabelFont(JRFont font) {}
public Color getTimeAxisLabelColor() {
return JRStyleResolver.getTimeAxisLabelColor((JRTimeAxisFormat)this, (JRChartPlot)this);
}
public Color getOwnTimeAxisLabelColor() {
return this.timeAxisLabelColor;
}
public void setTimeAxisLabelColor(Color color) {}
public JRFont getTimeAxisTickLabelFont() {
return this.timeAxisTickLabelFont;
}
public void setTimeAxisTickLabelFont(JRFont font) {}
public Color getTimeAxisTickLabelColor() {
return JRStyleResolver.getTimeAxisTickLabelColor((JRTimeAxisFormat)this, (JRChartPlot)this);
}
public Color getOwnTimeAxisTickLabelColor() {
return this.timeAxisTickLabelColor;
}
public void setTimeAxisTickLabelColor(Color color) {}
public String getTimeAxisTickLabelMask() {
return ((JRHighLowPlot)this.parent).getTimeAxisTickLabelMask();
}
public void setTimeAxisTickLabelMask(String mask) {}
public Color getTimeAxisLineColor() {
return JRStyleResolver.getTimeAxisLineColor((JRTimeAxisFormat)this, (JRChartPlot)this);
}
public Color getOwnTimeAxisLineColor() {
return this.timeAxisLineColor;
}
public void setTimeAxisLineColor(Color color) {}
public JRExpression getValueAxisLabelExpression() {
return ((JRHighLowPlot)this.parent).getValueAxisLabelExpression();
}
public JRFont getValueAxisLabelFont() {
return this.valueAxisLabelFont;
}
public void setValueAxisLabelFont(JRFont font) {}
public Color getValueAxisLabelColor() {
return JRStyleResolver.getValueAxisLabelColor((JRValueAxisFormat)this, (JRChartPlot)this);
}
public Color getOwnValueAxisLabelColor() {
return this.valueAxisLabelColor;
}
public void setValueAxisLabelColor(Color color) {}
public JRFont getValueAxisTickLabelFont() {
return this.valueAxisTickLabelFont;
}
public void setValueAxisTickLabelFont(JRFont font) {}
public Color getValueAxisTickLabelColor() {
return JRStyleResolver.getValueAxisTickLabelColor((JRValueAxisFormat)this, (JRChartPlot)this);
}
public Color getOwnValueAxisTickLabelColor() {
return this.valueAxisTickLabelColor;
}
public void setValueAxisTickLabelColor(Color color) {}
public String getValueAxisTickLabelMask() {
return ((JRHighLowPlot)this.parent).getValueAxisTickLabelMask();
}
public void setValueAxisTickLabelMask(String mask) {}
public Color getValueAxisLineColor() {
return JRStyleResolver.getValueAxisLineColor((JRValueAxisFormat)this, (JRChartPlot)this);
}
public Color getOwnValueAxisLineColor() {
return this.valueAxisLineColor;
}
public void setValueAxisLineColor(Color color) {}
public boolean isShowOpenTicks() {
return ((JRHighLowPlot)this.parent).isShowOpenTicks();
}
public boolean isShowCloseTicks() {
return ((JRHighLowPlot)this.parent).isShowCloseTicks();
}
}