- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在使用 jFreeChart 来显示这种图:
问题是,当程序在高度 >800px 的显示器上运行时,深色阴影和 45 虚线无法正确绘制。
我发现问题是由返回的错误值引起的:
chartPanel.getChartRenderingInfo().getPlotInfo().getSubplotInfo(0).getDataArea()
数据区域不正确,高度错误,因此阴影未按预期绘制。但这仅在将窗口大小调整到高于 ~800px 高度时才会发生。
我成功地用一个小的 SSCCE 重现了错误(需要 jcommon 和 jfreechart):
import java.awt.BorderLayout;
import java.awt.Color;
import java.awt.EventQueue;
import java.awt.Font;
import java.awt.event.ComponentEvent;
import java.awt.event.ComponentListener;
import java.awt.geom.Rectangle2D;
import javax.swing.JFrame;
import javax.swing.JLabel;
import javax.swing.JPanel;
import javax.swing.border.EmptyBorder;
import org.jfree.chart.ChartPanel;
import org.jfree.chart.JFreeChart;
import org.jfree.chart.axis.NumberAxis;
import org.jfree.chart.plot.CombinedDomainXYPlot;
import org.jfree.chart.plot.PlotOrientation;
import org.jfree.chart.plot.XYPlot;
import org.jfree.chart.renderer.xy.XYItemRenderer;
import org.jfree.chart.renderer.xy.XYLineAndShapeRenderer;
import org.jfree.data.time.TimeSeriesCollection;
import org.jfree.ui.RectangleEdge;
import org.jfree.ui.RectangleInsets;
public class Window extends JFrame implements ComponentListener {
private static final long serialVersionUID = 1L;
private JPanel contentPane;
private XYPlot subplotTop;
private XYPlot subplotBottom;
private CombinedDomainXYPlot plot;
private JFreeChart chart;
private ChartPanel chartPanel;
private JLabel label;
public static void main(String[] args) {
EventQueue.invokeLater(new Runnable() {
public void run() {
try {
Window frame = new Window();
frame.setVisible(true);
} catch (Exception e) {
e.printStackTrace();
}
}
});
}
public Window() {
setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
setBounds(100, 100, 700, 500);
contentPane = new JPanel();
contentPane.setBorder(new EmptyBorder(5, 5, 5, 5));
contentPane.setLayout(new BorderLayout(0, 0));
setContentPane(contentPane);
JPanel example = new JPanel();
label = new JLabel("Resize this window (do not use the \"maximize\" button");
example.add( label );
contentPane.add( example, BorderLayout.NORTH );
createTopChart();
createBottomChart();
createCombinedChart();
chartPanel = new ChartPanel(chart);
this.add(chartPanel, BorderLayout.CENTER);
//window resize listener
this.addComponentListener(this);
}
private void createTopChart() {
subplotTop = new XYPlot();
subplotTop.setDomainPannable(true);
subplotTop.setBackgroundPaint(Color.lightGray);
subplotTop.setDomainGridlinePaint(Color.white);
subplotTop.setRangeGridlinePaint(Color.white);
XYItemRenderer renderer = new XYLineAndShapeRenderer(true, false);
subplotTop.setRenderer(renderer);
NumberAxis range = new NumberAxis("dBA");
range.setRange(30, 120);
range.setAutoRange(false);
subplotTop.setRangeAxis(range);
TimeSeriesCollection dataset_L = randomDataset(30,120);
subplotTop.setDataset(dataset_L);
}
private void createBottomChart(){
subplotBottom = new XYPlot();
subplotBottom.setDomainPannable(true);
subplotBottom.setBackgroundPaint(Color.lightGray);
subplotBottom.setDomainGridlinePaint(Color.white);
subplotBottom.setRangeGridlinePaint(Color.white);
XYItemRenderer renderer = new XYLineAndShapeRenderer(true, false);
subplotBottom.setRenderer(renderer);
NumberAxis range = new NumberAxis("%");
range.setRange(-10, 100);
range.setAutoRange(false);
subplotBottom.setRangeAxis(range);
TimeSeriesCollection dataset_P = randomDataset(0,100);
subplotBottom.setDataset(dataset_P);
}
private void createCombinedChart() {
plot = new CombinedDomainXYPlot();
plot.setGap(30);
plot.add(subplotTop, 4);
plot.add(subplotBottom, 1);
plot.setOrientation(PlotOrientation.VERTICAL);
chart = new JFreeChart("Title", new Font("Arial", Font.BOLD, 18), plot, true);
chart.getLegend().setVisible(false);
chart.getLegend().setPosition(RectangleEdge.RIGHT);
chart.getTitle().setMargin(new RectangleInsets(15,5,15,5));
chart.getTitle().setPaint(Color.BLACK);
}
private TimeSeriesCollection randomDataset(float min, float max) {
return null;
}
private void showAreas() {
Rectangle2D screenDataAreaChartPanel = this.chartPanel.getScreenDataArea();
System.out.println("screenDataAreaChartPanel: "+screenDataAreaChartPanel);
Rectangle2D plotArea = this.chartPanel.getChartRenderingInfo().getPlotInfo().getPlotArea();
System.out.println("getPlotArea: "+plotArea.toString());
Rectangle2D dataAreaPlot = this.chartPanel.getChartRenderingInfo().getPlotInfo().getDataArea();
System.out.println("getDataArea: "+dataAreaPlot.toString());
Rectangle2D dataAreaSubplotTop = this.chartPanel.getChartRenderingInfo().getPlotInfo().getSubplotInfo(0).getDataArea();
Rectangle2D dataAreaSubplotBottom = this.chartPanel.getChartRenderingInfo().getPlotInfo().getSubplotInfo(1).getDataArea();
System.out.println("dataAreaSubplotTop: "+dataAreaSubplotTop.toString());
System.out.println("dataAreaSubplotBottom: "+dataAreaSubplotBottom.toString());
System.out.println();
label.setText("ScreenDataArea.height="+Math.round(screenDataAreaChartPanel.getHeight())+
". SubPlotTop.heigth="+Math.round(dataAreaSubplotTop.getHeight())+
". SubPlotBottom.heigth="+Math.round(dataAreaSubplotBottom.getHeight()));
repaint();
}
@Override
public void componentHidden(ComponentEvent e) {}
@Override
public void componentMoved(ComponentEvent e) { }
@Override
public void componentResized(ComponentEvent e) {
chartPanel.repaint();
chartPanel.revalidate();
this.repaint();
showAreas();
}
@Override
public void componentShown(ComponentEvent e) { }
}
我使用过 jfreechart v1.0.14 和 jcommon v1.0.18。在示例中,图表上方有三个值。您将看到,当您增大窗口时,这三个值会增长,但在大约 800px 高度时,第一个值将继续增长,而其他值则不会。为什么?
如果您没有大屏幕分辨率,您可能不会看到该错误,就像我遇到的那样。
我做错了什么吗?这是一个错误吗?
最佳答案
一些注意事项:
您可能正在寻找org.jfree.chart.annotations
之一,其中“坐标在数据空间中指定;”可以看到几个例子here .
JFreeChart
不是组件;而是组件。 ChartPanel
是一个重新绘制面板以响应各种图表事件的组件;很少需要使用 ComponentListener
。
不要使用setBounds()
;相反,pack()
封闭的Window
;如果默认值不令人满意,请覆盖 ChartPanel
中的 getPreferredSize()
。
仅在 event dispatch thread 上构建和操作 Swing GUI 对象 .
关于java - jFreeChart。组合图表错误内子图的高度?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15633831/
我需要从图例中隐藏第二/第三/第四项。有没有办法在jFreeChart中实现这一目标? 谢谢! 最佳答案 我已经尝试了上述建议,但似乎对我没有用。如果您只想从图例中删除系列,则可以使用setSerie
我对 JFreeChart 中的异常值规则有一些疑问: 是否可以影响 JFreeChart 箱线图中的异常值规则? 我假设异常值的默认设置是 Q3+1.5*IQR 和 Q1-1.5*IQR? 对于 Q
使用的 JFreeChart 版本:1.5.0 我尝试了以下方法来获得散点图中的空心形状: PlotFrame.java文件内容: package javaapplication1; import j
如何自定义 JFreeChart 图形的颜色。 让我们看看我的 Java 代码: private StreamedContent chartImage ; public void init(){
在 JFreeChart , 是否可以将图例嵌入图表本身? 图例可以设置在图表的顶部、底部、左侧、右侧,如下所示,但是否可以将其嵌入图表中? LegendTitle legend=chart.getL
大家好,我是 jfreechart 的新手。 我想删除为 jfreechart 中的折线图图表面板的标题分配的空间。 因为我需要将图表面板的高度和宽度设置为包含图表面板的顶部面板的 10 像素边框。
在 JFreeChart 图形中,如果调整应用程序窗口的大小,图形将根据应用程序窗口大小重新绘制。是否可以将图表大小设置为固定值? 最佳答案 好。 我想建议一种不同的方法。不用担心在 jfreecha
我在 JFreeChart 中创建了一个饼图。但是,数值没有出现在“切片”上。我如何让它出现在那里? 最佳答案 在 PiePlot 上,可以使用 setter setSimpleLabels。 假设您
我正在使用 JFreeChart 生成 StackedBarChart。根据输入数据,我可以有很多类别(通常在 20 到 40 之间),导致标签重叠。在下面的屏幕截图中,您可以看到类别从 1 到 38
我正在尝试实现 a timeseries chart在 JFreeChart 中有一个特殊的要求。我可以绘制图表,但我不知道如何在图表中的最后一个值处实现垂直红线。它应该始终在同一个位置,并且应该始终
如何在 jfreechart 中加粗 x 和 y 轴值? 最佳答案 你试过其中之一吗: yourAxis.setTickLabelFont(new Font("Arial", Font.BOLD, 1
据我所知,DateTickUnitType 是一个无法在完全替换之外扩展或更改的枚举,它只指定天、月、年、分钟、小时、秒和毫秒的单位,但不是周,尽管有一个TimePeriod 的周类型。 这导致的问题
我需要使用 JFreeChart 生成图表然后使用 Apache PDFBOX 将它们导出为 PDF .我不想使用 iText,因为它不能用于专有软件。 我搜索了整个 Google,但没有成功!有人做
我刚刚发现,当我将 ChartPanel 添加到 JFrame 时,当 JFrame 拖动更大或更小时,ChartPanel 将调整大小以适应框架。但是,当我将 ChartPanel 添加到 JPan
我是 Java 新手,正在尝试掌握 JFreeChart。我正在尝试从该网站运行一些演示代码:https://www.tutorialspoint.com/jfreechart/jfreechart_
我正在尝试使用 DefaultCategoryDataset 绘制 LineChart 并且我面临的问题是, 当我尝试在两个值之间绘制一个空值时,两个点之间的连接丢失(即没有出现连接两个点的线),或者
是否可以将图像/BufferedImage 转换为 JFreeChart? 最佳答案 将图像转换到 JFree 是不可能的。要从 JFreechart 创建图像,您可以执行以下操作: Buffered
有人知道如何在Jfreechart中在给定坐标处绘制垂直虚线吗? 谢谢 最佳答案 Example 5显示图表的一系列虚线。这样设置您的行程: plot.getRenderer().setSeriesS
如我在图片中所示,我想将列标签(值 434、2562,....)稍微向上移动。有什么方法可以配置吗?我最初的问题是,由于列之间的差异,最后两列上的标签不再可见(它们实际上是 15 和 24 或类似的
如本模型所示: 我知道可以使用 org.jfree.chart.plot.CombinedDomainXYPlot 使图表彼此相邻显示,但是是否可以将它们重叠,可能使用不同的 Y 轴(一个)用于图表左
我是一名优秀的程序员,十分优秀!