Package org.apache.poi.xssf.usermodel.charts

Examples of org.apache.poi.xssf.usermodel.charts.XSSFCategoryAxis.crossAxis()


    long id = axis.size() + 1;
    XSSFCategoryAxis categoryAxis = new XSSFCategoryAxis(this, id, pos);
    if (axis.size() == 1) {
      ChartAxis ax = axis.get(0);
      ax.crossAxis(categoryAxis);
      categoryAxis.crossAxis(ax);
    }
    axis.add(categoryAxis);
    return categoryAxis;
  }
View Full Code Here


    long id = axis.size() + 1;
    XSSFCategoryAxis categoryAxis = new XSSFCategoryAxis(this, id, pos);
    if (axis.size() == 1) {
      ChartAxis ax = axis.get(0);
      ax.crossAxis(categoryAxis);
      categoryAxis.crossAxis(ax);
    }
    axis.add(categoryAxis);
    return categoryAxis;
  }
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. 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.