mirror of https://github.com/apache/poi.git
try to add more chart related classes to poi-ooxml-lite
git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1920795 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
e1379d3725
commit
89ef0de42e
|
@ -103,8 +103,19 @@ class TestNecessaryOOXMLClasses {
|
||||||
assertNotNull(ctArea3DChart);
|
assertNotNull(ctArea3DChart);
|
||||||
CTSurfaceChart ctSurfaceChart = CTSurfaceChart.Factory.newInstance();
|
CTSurfaceChart ctSurfaceChart = CTSurfaceChart.Factory.newInstance();
|
||||||
assertNotNull(ctSurfaceChart);
|
assertNotNull(ctSurfaceChart);
|
||||||
|
|
||||||
CTDoughnutChart ctDoughnutChart = CTDoughnutChart.Factory.newInstance();
|
CTDoughnutChart ctDoughnutChart = CTDoughnutChart.Factory.newInstance();
|
||||||
assertNotNull(ctDoughnutChart);
|
assertNotNull(ctDoughnutChart);
|
||||||
|
CTHoleSize ctHoleSize = CTHoleSize.Factory.newInstance();
|
||||||
|
assertNotNull(ctHoleSize);
|
||||||
|
STHoleSize stHoleSize = STHoleSize.Factory.newInstance();
|
||||||
|
assertNotNull(stHoleSize);
|
||||||
|
ctHoleSize.xsetVal(stHoleSize);
|
||||||
|
STHoleSizePercent stHoleSizePercent = STHoleSizePercent.Factory.newInstance();
|
||||||
|
assertNotNull(stHoleSizePercent);
|
||||||
|
STHoleSizeUByte stHoleSizeUByte = STHoleSizeUByte.Factory.newInstance();
|
||||||
|
assertNotNull(stHoleSizeUByte);
|
||||||
|
|
||||||
CTBar3DChart ctBar3DChart = CTBar3DChart.Factory.newInstance();
|
CTBar3DChart ctBar3DChart = CTBar3DChart.Factory.newInstance();
|
||||||
assertNotNull(ctBar3DChart);
|
assertNotNull(ctBar3DChart);
|
||||||
CTLine3DChart ctLine3DChart = CTLine3DChart.Factory.newInstance();
|
CTLine3DChart ctLine3DChart = CTLine3DChart.Factory.newInstance();
|
||||||
|
@ -197,8 +208,6 @@ class TestNecessaryOOXMLClasses {
|
||||||
assertNotNull(stDepthPercent);
|
assertNotNull(stDepthPercent);
|
||||||
STHPercent sthPercent = STHPercent.Factory.newInstance();
|
STHPercent sthPercent = STHPercent.Factory.newInstance();
|
||||||
assertNotNull(sthPercent);
|
assertNotNull(sthPercent);
|
||||||
STHoleSize stHoleSize = STHoleSize.Factory.newInstance();
|
|
||||||
assertNotNull(stHoleSize);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
@Test
|
@Test
|
||||||
|
|
|
@ -2549,3 +2549,5 @@ org/openxmlformats/schemas/drawingml/x2006/chart/impl/STAxisUnitImpl
|
||||||
org/openxmlformats/schemas/drawingml/x2006/chart/STAxisUnit
|
org/openxmlformats/schemas/drawingml/x2006/chart/STAxisUnit
|
||||||
org/openxmlformats/schemas/drawingml/x2006/main/impl/CTAudioFileImpl
|
org/openxmlformats/schemas/drawingml/x2006/main/impl/CTAudioFileImpl
|
||||||
org/openxmlformats/schemas/drawingml/x2006/main/CTAudioFile
|
org/openxmlformats/schemas/drawingml/x2006/main/CTAudioFile
|
||||||
|
org/openxmlformats/schemas/drawingml/x2006/chart/impl/STHoleSizePercentImpl
|
||||||
|
org/openxmlformats/schemas/drawingml/x2006/chart/impl/STHoleSizeUByteImpl
|
||||||
|
|
|
@ -1183,3 +1183,5 @@ ctpivotarea26cetype
|
||||||
ctpivotareareferencesaef6type
|
ctpivotareareferencesaef6type
|
||||||
ctpivotareareferencee5a5type
|
ctpivotareareferencee5a5type
|
||||||
ctindex5371type
|
ctindex5371type
|
||||||
|
stholesizepercenta3d2type
|
||||||
|
stholesizeubyte577atype
|
||||||
|
|
Loading…
Reference in New Issue