org.apache.poi.xssf.usermodel.XSSFDrawing.createGraphicFrame()方法的使用及代码示例

x33g5p2x  于2022-02-03 转载在 其他  
字(2.6k)|赞(0)|评价(0)|浏览(221)

本文整理了Java中org.apache.poi.xssf.usermodel.XSSFDrawing.createGraphicFrame()方法的一些代码示例,展示了XSSFDrawing.createGraphicFrame()的具体用法。这些代码示例主要来源于Github/Stackoverflow/Maven等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。XSSFDrawing.createGraphicFrame()方法的具体详情如下:
包路径:org.apache.poi.xssf.usermodel.XSSFDrawing
类名称:XSSFDrawing
方法名:createGraphicFrame

XSSFDrawing.createGraphicFrame介绍

[英]Creates a new graphic frame.
[中]创建一个新的图形框架。

代码示例

代码示例来源:origin: org.apache.poi/poi-ooxml

/**
 * Creates a chart.
 *
 * @param anchor
 *            the client anchor describes how this chart is attached to the
 *            sheet.
 * @return the newly created chart
 * @see org.apache.poi.xssf.usermodel.XSSFDrawing#createChart(ClientAnchor)
 */
public XSSFChart createChart(XSSFClientAnchor anchor) {
  int chartNumber = getPackagePart().getPackage().getPartsByContentType(XSSFRelation.CHART.getContentType())
    .size() + 1;
  RelationPart rp = createRelationship(XSSFRelation.CHART, XSSFFactory.getInstance(), chartNumber, false);
  XSSFChart chart = rp.getDocumentPart();
  String chartRelId = rp.getRelationship().getId();
  XSSFGraphicFrame frame = createGraphicFrame(anchor);
  frame.setChart(chart, chartRelId);
  frame.getCTGraphicalObjectFrame().setXfrm(createXfrm(anchor));
  return chart;
}

代码示例来源:origin: org.openl.rules/org.openl.lib.poi.dev

/**
 * Creates a chart.
 * @param anchor the client anchor describes how this chart is attached to
 *               the sheet.
 * @return the newly created chart
 * @see org.apache.poi.xssf.usermodel.XSSFDrawing#createChart(ClientAnchor)
 */
public XSSFChart createChart(XSSFClientAnchor anchor) {
  int chartNumber = getPackagePart().getPackage().
    getPartsByContentType(XSSFRelation.CHART.getContentType()).size() + 1;
  XSSFChart chart = (XSSFChart) createRelationship(
      XSSFRelation.CHART, XSSFFactory.getInstance(), chartNumber);
  String chartRelId = chart.getPackageRelationship().getId();
  XSSFGraphicFrame frame = createGraphicFrame(anchor);
  frame.setChart(chart, chartRelId);
  return chart;
}

代码示例来源:origin: org.apache.servicemix.bundles/org.apache.servicemix.bundles.poi

/**
 * Creates a chart.
 *
 * @param anchor
 *            the client anchor describes how this chart is attached to the
 *            sheet.
 * @return the newly created chart
 * @see org.apache.poi.xssf.usermodel.XSSFDrawing#createChart(ClientAnchor)
 */
public XSSFChart createChart(XSSFClientAnchor anchor) {
  int chartNumber = getPackagePart().getPackage().getPartsByContentType(XSSFRelation.CHART.getContentType())
    .size() + 1;
  RelationPart rp = createRelationship(XSSFRelation.CHART, XSSFFactory.getInstance(), chartNumber, false);
  XSSFChart chart = rp.getDocumentPart();
  String chartRelId = rp.getRelationship().getId();
  XSSFGraphicFrame frame = createGraphicFrame(anchor);
  frame.setChart(chart, chartRelId);
  frame.getCTGraphicalObjectFrame().setXfrm(createXfrm(anchor));
  return chart;
}

相关文章