Lines Matching refs:xChartDocument
155 XChartDocument xChartDocument = null; in testCreateMainTitle() local
156 xChartDocument = SCUtil.createChart(sheet, rectangle, cellAddress, chartName); in testCreateMainTitle()
157 SCUtil.setChartType(xChartDocument, inputType); in testCreateMainTitle()
159 result = (Boolean) SCUtil.getProperties(xChartDocument, "HasMainTitle"); in testCreateMainTitle()
161 SCUtil.setProperties(xChartDocument, "HasMainTitle", true); in testCreateMainTitle()
163 XShape aTitle = xChartDocument.getTitle(); in testCreateMainTitle()
170 xChartDocument = SCUtil.getChartByName(sheet, chartName); in testCreateMainTitle()
171 result = (Boolean) SCUtil.getProperties(xChartDocument, "HasMainTitle"); in testCreateMainTitle()
172 resultTitle = (String) SCUtil.getProperties(xChartDocument.getTitle(), "String"); in testCreateMainTitle()
212 XChartDocument xChartDocument = null; in testCreateSubTitle() local
213 xChartDocument = SCUtil.createChart(sheet, rectangle, cellAddress, chartName); in testCreateSubTitle()
214 SCUtil.setChartType(xChartDocument, inputType); in testCreateSubTitle()
215 result = (Boolean) SCUtil.getProperties(xChartDocument, "HasSubTitle"); in testCreateSubTitle()
217 SCUtil.setProperties(xChartDocument, "HasSubTitle", true); in testCreateSubTitle()
219 XShape aSubTitle = xChartDocument.getSubTitle(); in testCreateSubTitle()
226 xChartDocument = SCUtil.getChartByName(sheet, chartName); in testCreateSubTitle()
227 result = (Boolean) SCUtil.getProperties(xChartDocument, "HasSubTitle"); in testCreateSubTitle()
228 resultTitle = (String) SCUtil.getProperties(xChartDocument.getSubTitle(), "String"); in testCreateSubTitle()
273 XChartDocument xChartDocument = null; in testInputTitles() local
274 xChartDocument = SCUtil.createChart(sheet, rectangle, cellAddress, chartName); in testInputTitles()
275 SCUtil.setChartType(xChartDocument, inputType); in testInputTitles()
276 SCUtil.setProperties(xChartDocument, "HasMainTitle", true); in testInputTitles()
277 SCUtil.setProperties(xChartDocument, "HasSubTitle", true); in testInputTitles()
279 SCUtil.setProperties(xChartDocument.getTitle(), "String", titles[0]); in testInputTitles()
280 SCUtil.setProperties(xChartDocument.getSubTitle(), "String", titles[1]); in testInputTitles()
286 xChartDocument = SCUtil.getChartByName(sheet, chartName); in testInputTitles()
287 result[0] = (Boolean) SCUtil.getProperties(xChartDocument, "HasMainTitle"); in testInputTitles()
288 result[1] = (Boolean) SCUtil.getProperties(xChartDocument, "HasSubTitle"); in testInputTitles()
289 resultTitle[0] = (String) SCUtil.getProperties(xChartDocument.getTitle(), "String"); in testInputTitles()
290 resultTitle[1] = (String) SCUtil.getProperties(xChartDocument.getSubTitle(), "String"); in testInputTitles()