Package org.timepedia.chronoscope.client.overlays

Examples of org.timepedia.chronoscope.client.overlays.DomainBarMarker


  }

  public void onSaveComment(ChartComment comment)
  {
    final XYPlot plot = chartPanel.getChart().getPlot();
    DomainBarMarker marker = new DomainBarMarker(comment.getDomainValue(), 1.0, comment.getTitle());
    plot.addOverlay(marker);
    plot.redraw();

    // keep reference
    overlayMapping.put(comment.getId(), marker);   
View Full Code Here


   *
   */
  @Export
  public static DomainBarMarker createBarMarker(String startDate,
      String endDate, String label) {
    return new DomainBarMarker(startDate, endDate, label);
  }
View Full Code Here

   *
   */
  @Export
  public static DomainBarMarker createBarMarkerWithClass(String startDate,
      String endDate, String label, String gssClass) {
    return new DomainBarMarker(startDate, endDate, label, gssClass);
  }
View Full Code Here

TOP

Related Classes of org.timepedia.chronoscope.client.overlays.DomainBarMarker

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.