Package net.sf.mzmine.modules.visualization.scatterplot.scatterplotchart

Examples of net.sf.mzmine.modules.visualization.scatterplot.scatterplotchart.ScatterPlotChart


    setDefaultCloseOperation(DISPOSE_ON_CLOSE);

    topPanel = new ScatterPlotTopPanel();
    add(topPanel, BorderLayout.NORTH);

    chart = new ScatterPlotChart(topPanel, peakList);
    Border border = BorderFactory.createEtchedBorder(EtchedBorder.RAISED);
    chart.setBorder(border);
    chart.setBackground(Color.white);
    add(chart, BorderLayout.CENTER);
View Full Code Here

TOP

Related Classes of net.sf.mzmine.modules.visualization.scatterplot.scatterplotchart.ScatterPlotChart

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.