Package com.xeiam.xchart.internal.chartpart

Examples of com.xeiam.xchart.internal.chartpart.ChartPainter


   * @param width
   * @param height
   */
  public Chart(int width, int height) {

    chartPainter = new ChartPainter(width, height);
  }
View Full Code Here


   * @param height
   * @param theme instance of Theme class
   */
  public Chart(int width, int height, Theme theme) {

    chartPainter = new ChartPainter(width, height);
    chartPainter.getStyleManager().setTheme(theme);
  }
View Full Code Here

TOP

Related Classes of com.xeiam.xchart.internal.chartpart.ChartPainter

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.