https://bz.apache.org/bugzilla/show_bug.cgi?id=59306--- Comment #2 from Javen O'Neal <
[hidden email]> ---
Tried to write a unit test for this, then discovered XSSFChart is pretty
incomplete. Without using the CTChart* classes, it is possible to add data
series to a chart but not query existing data series.
/lang=jython
from java.io import File
from org.apache.poi.ss.usermodel import WorkbookFactory
f = File('SimpleScatterChart.xlsx')
wb = WorkbookFactory.create(f, None, True)
sheet1 = wb.getSheet('Sheet1')
chart1 = wb.getSheet('Chart1')
sheet1scatter = sheet1.createDrawingPatriarch().getCharts()[0]
chart1scatter = chart1.createDrawingPatriarch().getCharts()[0]
--
You are receiving this mail because:
You are the assignee for the bug.
---------------------------------------------------------------------
To unsubscribe, e-mail:
[hidden email]
For additional commands, e-mail:
[hidden email]