Package com.odb.collector

Examples of com.odb.collector.AxisInfo


      dsConfig.setDsTimeoutInterval((long) dc.getTimeoutInterval());
      dsConfig.setSeriesCount(dc.getNumberOfSeries());
      int axisCount = dc.getAxisDetails().size();
      AxisInfo[] xsInfoList = new AxisInfo[axisCount];
      for (int i = 0; i < axisCount; i++) {
        xsInfoList[i] = new AxisInfo();
        ArrayList<String> axisLabels = new ArrayList<String>();
        xsInfoList[i].setDataSourceAxisName(dc.getAxisDetails().get(i).getAxisName());
        axisLabels.add(new Integer((int) dc.getAxisDetails().get(i).getMinima()).toString());
        axisLabels.add(new Integer((int) dc.getAxisDetails().get(i).getMaxima()).toString());
        xsInfoList[i].setAxisLabels(axisLabels.toArray(new String[axisLabels.size()]));
View Full Code Here

TOP

Related Classes of com.odb.collector.AxisInfo

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.