java - 带有突出显示点的 JFreeChart

标签 java jfreechart

我正在使用 JFreeChart 绘制图形。代码是

package com.daya;

import java.awt.Color;
import java.io.BufferedReader;
import java.io.DataInputStream;
import java.io.FileInputStream;
import java.io.InputStreamReader;

import org.jfree.chart.ChartFactory;
import org.jfree.chart.ChartPanel;
import org.jfree.chart.JFreeChart;
import org.jfree.chart.plot.PlotOrientation;
import org.jfree.chart.plot.XYPlot;
import org.jfree.data.xy.XYDataset;
import org.jfree.data.xy.XYSeries;
import org.jfree.data.xy.XYSeriesCollection;
import org.jfree.ui.ApplicationFrame;
import org.jfree.ui.RefineryUtilities;

public class Two extends ApplicationFrame {

    public Two(final String title) {
        super(title);
        final XYDataset dataset = createDataset();
        final JFreeChart chart = createChart(dataset);
        final ChartPanel chartPanel = new ChartPanel(chart);
        chartPanel.setPreferredSize(new java.awt.Dimension(1200, 1100));
        setContentPane(chartPanel);
    }

    private XYDataset createDataset() {
        final XYSeries series1 = new XYSeries("SLMM");
        final XYSeries series2 = new XYSeries("FSPM");
        XYSeries series = new XYSeries("Power Comparision");
        final XYSeriesCollection dataset = new XYSeriesCollection();
        try {
            FileInputStream fstream = new FileInputStream("d:\\devs\\Result.txt");
            DataInputStream in = new DataInputStream(fstream);
            BufferedReader br = new BufferedReader(new InputStreamReader(in));
            String strLine;
            StringBuffer buffer = new StringBuffer();
            while ((strLine = br.readLine()) != null) {
                buffer.append(strLine);
            }
            String message = buffer.toString();
            message = message.replaceAll(" ", "");
            String[] splitMessage = message.split("&&&");
            for (int i = 0; i < splitMessage.length; i++) {
                double x = 0.0, y = 0.0;
                String algType = "direct";
                String[] insideSplit = splitMessage[i].split("\\|\\|");
                if (insideSplit[0].equalsIgnoreCase("isStraightAlg:false")) {
                    algType = "indirect";
                }
                for (int j = 1; j < insideSplit.length; j++) {
                    String[] valueSplit = insideSplit[j].split("\\:");
                    if (valueSplit[0].equalsIgnoreCase("Transactions")) {
                        x = Double.parseDouble(valueSplit[1]);
                    } else {
                        y = Double.parseDouble(valueSplit[1]);
                    }
                    //System.out.println(valueSplit[1]);
                }

                if (!algType.equalsIgnoreCase("direct")) {
                    System.out.println("X :" + x + " Y:" + y);
                    series1.add(x, y);
                } else {
                    System.out.println("X :" + x + " Y:" + y);
                    series2.add(x, y);
                }
            }


            dataset.addSeries(series1);
            dataset.addSeries(series2);
        } catch (Exception e) {
            e.printStackTrace();
        }
        return dataset;
    }

    private JFreeChart createChart(final XYDataset dataset) {
        final JFreeChart chart = ChartFactory.createXYLineChart(
            "Power Comparison",
            "Transaction",
            "Energy",
            dataset,
            PlotOrientation.VERTICAL,
            true,
            true,
            false);
        chart.setBackgroundPaint(Color.white);
        final XYPlot plot1 = chart.getXYPlot();
        plot1.setBackgroundPaint(Color.lightGray);
        plot1.setDomainGridlinePaint(Color.white);
        plot1.setRangeGridlinePaint(Color.white);

        final XYPlot plot2 = chart.getXYPlot();
        plot2.setBackgroundPaint(Color.lightGray);
        plot2.setDomainGridlinePaint(Color.white);
        plot2.setRangeGridlinePaint(Color.white);

        return chart;
    }

    public static void main(final String[] args) {
        final Two demo = new Two("Multi Line Chart");
        demo.pack();
        RefineryUtilities.centerFrameOnScreen(demo);
        demo.setVisible(true);
    }
}

文本文件是:

isStraightAlg : false || Transactions : 500 || Energy : 74267 &&& isStraightAlg : true || Transactions : 500 || Energy : 55984 &&& isStraightAlg : false || Transactions : 1000 || Energy : 169735 &&& isStraightAlg : true || Transactions : 1000 || Energy : 162520 &&& isStraightAlg : false || Transactions : 1500 || Energy : 333668 &&& isStraightAlg : true || Transactions : 1500 || Energy : 313766 &&& isStraightAlg : false || Transactions : 2000 || Energy : 494159 &&& isStraightAlg : true || Transactions : 2000 || Energy : 481627 &&& isStraightAlg : false || Transactions : 2500 || Energy : 594839 &&& isStraightAlg : true || Transactions : 2500 || Energy : 594839 &&& isStraightAlg : false || Transactions : 3000 || Energy : 847096 &&& isStraightAlg : true || Transactions : 3000 || Energy : 842402 &&&

用上面的代码绘制了图形。该图如下所示。如何显示绘制图形的确切点,即选定的 xy 点必须以圆圈呈现?

enter image description here

最佳答案

ChartFactory.createXYAreaChart() 使用 XYAreaRenderer。父级 AbstractRenderer 具有更改形状的可见性和外观的方法,如图所示 here对于相关的 XYLineAndShapeRenderer

附录:您的完整示例调用了 ChartFactory.createXYLineChart(),它在内部使用了 XYLineAndShapeRenderer。下图是将这些行添加到 createChart() 中的结果:

XYLineAndShapeRenderer renderer =
    (XYLineAndShapeRenderer) plot1.getRenderer();
renderer.setBaseShapesVisible(true);

image

关于java - 带有突出显示点的 JFreeChart,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11921501/

相关文章:

java - 如何阻止 vaadin 窃取所有 url-patterns(并与 spring mvc 一起玩)

jfreechart 多个渲染器工具提示不起作用

java - GridBagLayout - 图表和标签的放置

java - getChartRenderingInformation() getScreenDataArea() 均为零值

java - 在 jFreechart 上很好地显示 Y 轴

java - 将 DefaultCategoryDataset 值写入文件

java - 从动态生成的类中实例化一个对象

java - Spring security 在登录失败时返回 String 作为主体而不是 UserDetails?

java - 如何获取 JVM Ibm AS400 中加载的 .Jar 列表(绿屏)

java - Java for OS X 2013-004 如何影响(破坏)Swing 应用程序?