Package ar.com.fdvs.dj.domain.hyperlink

Examples of ar.com.fdvs.dj.domain.hyperlink.LiteralExpression


   *
   * @param column the serie column
   * @param label column the custom label
   **/
  public void addSerie(AbstractColumn column, String label) {
    addSerie(column, new LiteralExpression(label));
  }
View Full Code Here


   * Sets the title.
   *
   * @param title the title
   **/
  public DJBarChartBuilder setTitle(String title) {
    this.chart.getOptions().setTitleExpression(new LiteralExpression(title));
    return this;
  }
View Full Code Here

   * Sets the subtitle.
   *
   * @param subtitle the subtitle
   **/
  public DJBarChartBuilder setSubtitle(String subtitle) {
    this.chart.getOptions().setSubtitleExpression(new LiteralExpression(subtitle));
    return this;
  }
View Full Code Here

   *
   * @param column the serie column
   * @param label column the custom label
   **/
  public void addSerie(AbstractColumn column, String label) {
    addSerie(column, new LiteralExpression(label));
  }
View Full Code Here

   * Sets the title.
   *
   * @param title the title
   **/
  public DJXYLineChartBuilder setTitle(String title) {
    this.chart.getOptions().setTitleExpression(new LiteralExpression(title));
    return this;
  }
View Full Code Here

   * Sets the subtitle.
   *
   * @param subtitle the subtitle
   **/
  public DJXYLineChartBuilder setSubtitle(String subtitle) {
    this.chart.getOptions().setSubtitleExpression(new LiteralExpression(subtitle));
    return this;
  }
View Full Code Here

 
  public DJAxisFormat() {   
  }
 
  public DJAxisFormat(String label) {
    this(new LiteralExpression(label));
  }
View Full Code Here

   * Sets the title.
   *
   * @param title the title
   **/
  public DJAreaChartBuilder setTitle(String title) {
    this.chart.getOptions().setTitleExpression(new LiteralExpression(title));
    return this;
  }
View Full Code Here

   * Sets the subtitle.
   *
   * @param subtitle the subtitle
   **/
  public DJAreaChartBuilder setSubtitle(String subtitle) {
    this.chart.getOptions().setSubtitleExpression(new LiteralExpression(subtitle));
    return this;
  }
View Full Code Here

   * Sets the title.
   *
   * @param title the title
   **/
  public DJXYBarChartBuilder setTitle(String title) {
    this.chart.getOptions().setTitleExpression(new LiteralExpression(title));
    return this;
  }
View Full Code Here

TOP

Related Classes of ar.com.fdvs.dj.domain.hyperlink.LiteralExpression

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.