Package net.sf.jasperreports.charts.base

Examples of net.sf.jasperreports.charts.base.JRBaseValueDisplay


   * @param valueDisplay how to show the textual representation of the value
   */
  public void setValueDisplay(JRValueDisplay valueDisplay)
  {
    Object old = this.valueDisplay;
    this.valueDisplay = new JRBaseValueDisplay(valueDisplay, getChart());
    getEventSupport().firePropertyChange(PROPERTY_VALUE_DISPLAY, old, this.valueDisplay);
  }
View Full Code Here


   @param valueDisplay the value display formatting options
   */
  public void setValueDisplay(JRValueDisplay valueDisplay)
  {
    Object old = this.valueDisplay;
    this.valueDisplay = new JRBaseValueDisplay(valueDisplay, getChart());
    getEventSupport().firePropertyChange(PROPERTY_VALUE_DISPLAY, old, this.valueDisplay);
  }
View Full Code Here

TOP

Related Classes of net.sf.jasperreports.charts.base.JRBaseValueDisplay

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.