Package jmt.gui.jwat.workloadAnalysis.chart

Examples of jmt.gui.jwat.workloadAnalysis.chart.SmallPlotDistGraph


    /** ******************* Graph Panel ************************** */
    // TODO: aggiungere i grafici corretti che si zoommano e allargano
    graphPanel.setBorder(new TitledBorder(new EtchedBorder(EtchedBorder.LOWERED), "Graphs"));
    JTabbedPane graphsTabbed = new JTabbedPane();
    JPanel graph = new JPanel();
    plo = new SmallPlotDistGraph(model);
    plo.setSize(new Dimension(330, 120));
    graph.add(plo);
    graphsTabbed.addTab("Frequencies", graph);
    graph1 = new QQPlotPreviewPanel(model);
    graph1.setSize(new Dimension(330, 120));
View Full Code Here

TOP

Related Classes of jmt.gui.jwat.workloadAnalysis.chart.SmallPlotDistGraph

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.