Package com.odb.view.dashboard.client.charts

Examples of com.odb.view.dashboard.client.charts.DynamicLineChart


    // liveChart =new LiveChart(dsConfig.getDsTimeoutInterval(), min, max,
    // dataSourceAxisInfo.getDataSourceAxisName(),
    // dsConfig.getSeriesCount(),dataList);
    switch (chartType) {
    case HORIZONTAL_LINE:
      liveChart = new DynamicLineChart(dsConfig.getSeriesCount(), min, max, dataList);
      break;
    case VERTICAL_BAR:
      liveChart = new DynamicBarChart(dsConfig.getSeriesCount(), min, max, dataList);
      break;
    default:
      liveChart = new DynamicLineChart(dsConfig.getSeriesCount(), min, max, dataList);
      break;
    }
    return liveChart;
  }
View Full Code Here

TOP

Related Classes of com.odb.view.dashboard.client.charts.DynamicLineChart

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.