You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
32 lines
699 B
32 lines
699 B
#include <QtCore>
|
|
#include "xlsxdocument.h"
|
|
#include "xlsxchartsheet.h"
|
|
#include "xlsxcellrange.h"
|
|
#include "xlsxchart.h"
|
|
|
|
using namespace QXlsx;
|
|
|
|
int main()
|
|
{
|
|
//![0]
|
|
Document xlsx;
|
|
for (int i=1; i<10; ++i)
|
|
xlsx.write(i, 1, i*i);
|
|
//![0]
|
|
|
|
//![1]
|
|
xlsx.addSheet("Chart1", AbstractSheet::ST_ChartSheet);
|
|
Chartsheet *sheet = static_cast<Chartsheet*>(xlsx.currentSheet());
|
|
Chart *barChart = sheet->chart();
|
|
barChart->setChartType(Chart::CT_Bar);
|
|
barChart->addSeries(CellRange("A1:A9"), xlsx.sheet("Sheet1"));
|
|
//![1]
|
|
|
|
//![2]
|
|
xlsx.saveAs("Book1.xlsx");
|
|
//![2]
|
|
|
|
Document xlsx2("Book1.xlsx");
|
|
xlsx2.saveAs("Book2.xlsx");
|
|
return 0;
|
|
}
|
|
|