Package org.jdesktop.swingx

Examples of org.jdesktop.swingx.JXGraph$DrawablePlot


        controlPanel.add(label);
        add(controlPanel, BorderLayout.NORTH);

        Point2D origin = new Point2D.Double(0.0d, 0.0d);
        Rectangle2D view = new Rectangle2D.Double(-10.0d, -10.0d, 20.0d, 20.0d);
        JXGraph graph = new JXGraph(origin, view, 5, 5, 5, 5);
        plot = new SimpleLinePlot();
        graph.addPlots(Color.RED, plot);
        add(graph);
    }
View Full Code Here

TOP

Related Classes of org.jdesktop.swingx.JXGraph$DrawablePlot

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.