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

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


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


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

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

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

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

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

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

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

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

   * Sets the title.
   *
   * @param title the title
   **/
  public DJScatterChartBuilder 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.