Package org.wicketstuff.flot

Examples of org.wicketstuff.flot.FlotPanel


   *
   * @param parameters
   *            Page parameters
   */
  public HomePage(final PageParameters parameters) {
    FlotPanel panel = new FlotPanel("flotPanel", new PropertyModel<List<Series>>(this, "data"));
    panel.setAxisMinX(-5.0);
    panel.setAxisMaxX(5.0);
    panel.setAxisMinY(-1.0);
    panel.setAxisMaxY(1.0);
    add(panel);
  }
View Full Code Here


   * @param parameters
   *            Page parameters
   */
  public HomePage(final PageParameters parameters)
  {
    FlotPanel panel = new FlotPanel("flotPanel", new PropertyModel<List<Series>>(this, "data"));
    panel.setAxisMinX(-5.0);
    panel.setAxisMaxX(5.0);
    panel.setAxisMinY(-1.0);
    panel.setAxisMaxY(1.0);
    add(panel);
  }
View Full Code Here

TOP

Related Classes of org.wicketstuff.flot.FlotPanel

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.