Package com.positive.charts.title

Examples of com.positive.charts.title.TextTitle


   * @see #getTitle()
   */
  public void setTitle(final String text) {
    if (text != null) {
      if (this.title == null) {
        this.setTitle(new TextTitle(text, TextTitle.DEFAULT_FONT));
      } else {
        this.title.setText(text);
      }
    } else {
      this.setTitle((TextTitle) null);
View Full Code Here

TOP

Related Classes of com.positive.charts.title.TextTitle

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.