Package com.arjuna.ats.tools.perfgraph.graphbean

Examples of com.arjuna.ats.tools.perfgraph.graphbean.XYGraphingBean


  public GraphPanel(int updatePeriod)
  {
    this.setPreferredSize(new Dimension(400,300));

    /** Create graph bean **/
    _graphingBean = new XYGraphingBean();
        _graphingBean.setXAxisLabel("Sample");
    _graphingBean.setYAxisLabel("Value");

    /** Create initial graph image **/
    _graphImage = _graphingBean.createGraphImage(400,300);
View Full Code Here

TOP

Related Classes of com.arjuna.ats.tools.perfgraph.graphbean.XYGraphingBean

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.