Package org.apache.poi.xwpf.usermodel
Class XWPFChart
- java.lang.Object
-
- org.apache.poi.ooxml.POIXMLDocumentPart
-
- org.apache.poi.xddf.usermodel.chart.XDDFChart
-
- org.apache.poi.xwpf.usermodel.XWPFChart
-
- All Implemented Interfaces:
TextContainer
@Beta public class XWPFChart extends XDDFChart
Represents a Chart in a .docx file
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from class org.apache.poi.ooxml.POIXMLDocumentPart
POIXMLDocumentPart.RelationPart
-
-
Field Summary
Fields Modifier and Type Field Description static intDEFAULT_HEIGHTdefault height of chart in emustatic intDEFAULT_WIDTHdefault width of chart in emu-
Fields inherited from class org.apache.poi.xddf.usermodel.chart.XDDFChart
axes, chartSpace, DEFAULT_X, DEFAULT_Y
-
-
Constructor Summary
Constructors Modifier Constructor Description protectedXWPFChart()constructor to Create a new chart in documentprotectedXWPFChart(PackagePart part)Construct a chart from a package part.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description protected voidattach(String chartRelId, XWPFRun run)Attach this chart known by its relation id to the given text run.booleanequals(Object obj)longgetChartBottomMargin(long margin)get margin from Bottomprotected POIXMLFactorygetChartFactory()longgetChartHeight()get chart heightlonggetChartLeftMargin(long margin)get margin from leftprotected POIXMLRelationgetChartRelation()longgetChartRightMargin(long margin)get margin from RightlonggetChartTopMargin(long margin)get margin from ToplonggetChartWidth()get chart widthprotected POIXMLRelationgetChartWorkbookRelation()LonggetChecksum()inthashCode()voidsetChartBottomMargin(long margin)set margin from bottomvoidsetChartBoundingBox(long width, long height)set chart height and widthvoidsetChartHeight(long height)set chart heightvoidsetChartLeftMargin(long margin)set margin from leftvoidsetChartMargin(long top, long right, long bottom, long left)set chart marginvoidsetChartRightMargin(long margin)set margin from RightvoidsetChartTopMargin(long margin)set margin from topvoidsetChartWidth(long width)set chart width-
Methods inherited from class org.apache.poi.xddf.usermodel.chart.XDDFChart
clear, clearChartSeries, commit, createCategoryAxis, createData, createDateAxis, createRelationshipInChart, createSeriesAxis, createValueAxis, deleteLegend, deleteShapeProperties, displayBlanksAs, fillSheet, findDefinedParagraphProperty, findDefinedRunProperty, formatRange, getAxes, getChartIndex, getChartSeries, getCTChart, getCTChartSpace, getCTPlotArea, getFormattedTitle, getOrAddLegend, getOrAddManualLayout, getOrAddShapeProperties, getOrAddView3D, getTitle, getTitleOverlay, getWorkbook, importContent, incrementSeriesCount, isPlotOnlyVisibleCells, plot, removeTitle, replaceReferences, saveWorkbook, setAutoTitleDeleted, setBackWall, setChartIndex, setExternalId, setFloor, setPlotOnlyVisibleCells, setSheetTitle, setSideWall, setTitleOverlay, setTitleText, setValueRange, setWorkbook
-
Methods inherited from class org.apache.poi.ooxml.POIXMLDocumentPart
_invokeOnDocumentRead, addRelation, createRelationship, createRelationship, createRelationship, getNextPartNumber, getPackagePart, getParent, getRelationById, getRelationId, getRelationPartById, getRelationParts, getRelations, getTargetPart, isCommitted, onDocumentCreate, onDocumentRead, onDocumentRemove, onSave, prepareForCommit, read, rebase, removeRelation, removeRelation, removeRelation, setCommitted, toString
-
-
-
-
Field Detail
-
DEFAULT_WIDTH
public static final int DEFAULT_WIDTH
default width of chart in emu- See Also:
- Constant Field Values
-
DEFAULT_HEIGHT
public static final int DEFAULT_HEIGHT
default height of chart in emu- See Also:
- Constant Field Values
-
-
Constructor Detail
-
XWPFChart
protected XWPFChart()
constructor to Create a new chart in document- Since:
- POI 4.0.0
-
XWPFChart
protected XWPFChart(PackagePart part) throws IOException, XmlException
Construct a chart from a package part.- Parameters:
part- the package part holding the chart data, the content type must beapplication/vnd.openxmlformats-officedocument.drawingml.chart+xml- Throws:
IOExceptionXmlException- Since:
- POI 4.0.0
-
-
Method Detail
-
getChartRelation
protected POIXMLRelation getChartRelation()
- Specified by:
getChartRelationin classXDDFChart- Returns:
- the chart relation in the implementing subclass.
-
getChartWorkbookRelation
protected POIXMLRelation getChartWorkbookRelation()
- Specified by:
getChartWorkbookRelationin classXDDFChart- Returns:
- the chart workbook relation in the implementing subclass.
-
getChartFactory
protected POIXMLFactory getChartFactory()
- Specified by:
getChartFactoryin classXDDFChart- Returns:
- the chart factory in the implementing subclass.
-
getChecksum
public Long getChecksum()
-
attach
protected void attach(String chartRelId, XWPFRun run) throws InvalidFormatException, IOException
Attach this chart known by its relation id to the given text run.- Parameters:
chartRelId- the relation id of this chart in its parent document.run- the text run to which this chart will be inlined.- Throws:
InvalidFormatExceptionIOException- Since:
- POI 4.0.0
-
setChartHeight
public void setChartHeight(long height)
set chart height- Parameters:
height- height of chart- Since:
- POI 4.0.0
-
setChartWidth
public void setChartWidth(long width)
set chart width- Parameters:
width- width of chart- Since:
- POI 4.0.0
-
getChartHeight
public long getChartHeight()
get chart height- Since:
- POI 4.0.0
-
getChartWidth
public long getChartWidth()
get chart width- Since:
- POI 4.0.0
-
setChartBoundingBox
public void setChartBoundingBox(long width, long height)set chart height and width- Parameters:
width- width of chartheight- height of chart- Since:
- POI 4.0.0
-
setChartTopMargin
public void setChartTopMargin(long margin)
set margin from top- Parameters:
margin- margin from top- Since:
- POI 4.0.0
-
getChartTopMargin
public long getChartTopMargin(long margin)
get margin from Top- Since:
- POI 4.0.0
-
setChartBottomMargin
public void setChartBottomMargin(long margin)
set margin from bottom- Parameters:
margin- margin from Bottom- Since:
- POI 4.0.0
-
getChartBottomMargin
public long getChartBottomMargin(long margin)
get margin from Bottom- Since:
- POI 4.0.0
-
setChartLeftMargin
public void setChartLeftMargin(long margin)
set margin from left- Parameters:
margin- margin from left- Since:
- POI 4.0.0
-
getChartLeftMargin
public long getChartLeftMargin(long margin)
get margin from left- Since:
- POI 4.0.0
-
setChartRightMargin
public void setChartRightMargin(long margin)
set margin from Right- Parameters:
margin- from right- Since:
- POI 4.0.0
-
getChartRightMargin
public long getChartRightMargin(long margin)
get margin from Right- Since:
- POI 4.0.0
-
setChartMargin
public void setChartMargin(long top, long right, long bottom, long left)set chart margin- Parameters:
top- margin from topright- margin from rightbottom- margin from bottomleft- margin from left- Since:
- POI 4.0.0
-
-