Package it.eng.spagobi.engines.kpi.bo.charttypes.dialcharts

Examples of it.eng.spagobi.engines.kpi.bo.charttypes.dialcharts.Speedometer


   */
  public static ChartImpl createChart(String subtype){
    logger.debug("IN");
    ChartImpl sbi=null;
      if(subtype.equalsIgnoreCase("Speedometer")){
        sbi=new Speedometer();
        logger.debug("Speedometer chart instanciated");
      }
      else if(subtype.equalsIgnoreCase("SimpleDial")){
        sbi= new SimpleDial();
        logger.debug("SimpleDial chart instanciated");
View Full Code Here

TOP

Related Classes of it.eng.spagobi.engines.kpi.bo.charttypes.dialcharts.Speedometer

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.