org.apache.poi.xslf.usermodel.XSLFGraphicChart Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of template-ppt Show documentation
Show all versions of template-ppt Show documentation
This is a template language for PPTX
package org.apache.poi.xslf.usermodel;
public class XSLFGraphicChart {
private final XSLFGraphicFrame graphic;
private final XSLFChart chart;
public XSLFGraphicChart(XSLFGraphicFrame graphic, XSLFChart chart) {
this.graphic = graphic;
this.chart = chart;
}
public XSLFGraphicFrame getGraphic() {
return graphic;
}
public XSLFChart getChart() {
return chart;
}
}