您知道ChartPanel有getPreferredSize方法。我想要XYPlot有一个类似的方法。因为我有背景图像,所以我会在ChartPanel中为每个打印大小的变化缩放图像。XYP打印宽度对我来说并不重要。我想缩放背景的高度。所以我需要XYPlot的大小。
更改可以是Windows调整大小的更改,也可以知道XYPlot的大小受domainAxis项、Legend项的影响。
p.S:我知道我可以在ChartEvent中读取绘图信息。我想在没有触发鼠标事件的情况下获得坐标。
编辑:我正在用以下代码创建面板。另一个类调用此方法,然后将带有ChartPanel的JPanel添加到JFrame 中
public void createPanel() {
XYPlot historyPlot = createHistoryPlot();
/** read forecast result job specific */
/** Creates future XYPlot */
XYPlot futurePlot = createFuturePlot();
/** range axis for CombinedRangeXYPlot */
final ValueAxis rangeAxis = new NumberAxis("");
CombinedRangeXYPlot plot = new CombinedRangeXYPlot(rangeAxis);
/** add subplot to plot */
plot.setGap(0);
plot.add(historyPlot, 1);
plot.add(futurePlot, 1);
/** Creates new plot includes combinedRange plot */
chart = new JFreeChart("", JFreeChart.DEFAULT_TITLE_FONT, plot, true);
panel = new ChartPanel(chart, true, true, true, false, true);
/** not enable zoom */
panel.setDomainZoomable(false);
panel.setRangeZoomable(false);
panel.validate();
panel.setVisible(true);
this.add(panel, BorderLayout.CENTER);
}
然后我尝试用以下代码自定义图形。它是在调用createPanel方法后调用外部类的。所以ChartPAnel是用子图形创建的。
/**
* Customizes graph view.Changes view related settings.
* @param chart
* JFreeChart instance
*/
private void customizeGraphView(JFreeChart chart) {
CombinedRangeXYPlot combinedPlot = (CombinedRangeXYPlot) chart.getPlot();
@SuppressWarnings("unchecked")
/** read 2 subplot*/
List<XYPlot> subPlots = combinedPlot.getSubplots();
for (int plotIndex = 0; plotIndex < subPlots.size(); plotIndex++) {
/** get plot */
XYPlot plot = subPlots.get(plotIndex);
/** do not show domain grid lines */
plot.setDomainGridlinesVisible(false);
XYItemRenderer itemRenderer = plot.getRenderer();
/** if line and shape renderer */
if (itemRenderer instanceof StandardXYItemRenderer) {
StandardXYItemRenderer renderer = (StandardXYItemRenderer) itemRenderer;
/** show shapes in time series */
renderer.setBaseShapesVisible(true);
/** fill shapes in time series */
renderer.setBaseShapesFilled(true);
renderer.setBaseFillPaint(Color.BLACK);
// addItemLabels(renderer);
}
/** add severity bar for BackGround image for 2 subplot */
if (plotIndex == 0) {
addBackGroundImage(plot, Align.RIGHT);
} else {
/** returns java.awt.geom.Rectangle2D$Double[x=0.0,y=0.0,w=0.0,h=0.0] */
panel.getScreenDataArea()
addBackGroundImage(plot, Align.LEFT);
}
plot.setOutlineVisible(false);
}
}
当您使用setBackgroundImage()
时,drawBackgroundImage()
似乎可以为您做到这一点。如果没有,则可以覆盖drawBackground()
以更改现有行为。
附录:发送给drawBackground()
的Rectangle2D
参数应提供所需的几何图形。
附录:这个覆盖drawBackground()
的示例显示了绘图的Rectangle2D
。注意,ChartPanel
继承了JPanel
的默认布局,即FlowLayout
。
控制台:
java.awt.Rectangle[x=8,y=28,width=664,height=388]
代码:
public Test() {
Image image = null;
try {
image = ImageIO.read(new File("image.jpg"));
} catch (IOException ex) {
ex.printStackTrace(System.err);
}
XYPlot plot = new XYPlot() {
@Override
public void drawBackground(Graphics2D g2, Rectangle2D area) {
super.drawBackground(g2, area);
System.out.println(area);
}
};
plot.setBackgroundImage(image);
JFreeChart chart = new JFreeChart("Test", plot);
ChartPanel panel = new ChartPanel(chart);
this.add(panel);
}