All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.apache.poi.xslf.usermodel.XSLFGraphicChart Maven / Gradle / Ivy

There is a newer version: 0.0.6-release
Show newest version
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;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy