| | |
| | | package com.ots.project.tool.report.LAQ.chart; |
| | | |
| | | import com.alibaba.fastjson.JSON; |
| | | import com.aspose.words.Chart; |
| | | import com.aspose.words.Document; |
| | | import com.aspose.words.DocumentBuilder; |
| | | import com.aspose.words.Paragraph; |
| | | import com.microsoft.schemas.vml.CTTextbox; |
| | | import com.ots.common.utils.StringUtils; |
| | | import com.ots.common.utils.poi.ExcelUtil; |
| | | import com.ots.common.utils.poi.WordUtil; |
| | | import com.ots.project.tool.report.LAQ.LAQReport; |
| | | import com.ots.project.tool.report.LAQ.LAQTemplate; |
| | | import com.ots.project.tool.report.MAQ.base.RowData; |
| | | import com.ots.project.tool.report.MAQ.base.SeriesData; |
| | | import javafx.scene.chart.ScatterChart; |
| | | import lombok.extern.slf4j.Slf4j; |
| | | import org.apache.poi.ooxml.POIXMLDocument; |
| | | import org.apache.poi.ooxml.POIXMLDocumentPart; |
| | | import org.apache.poi.openxml4j.util.ZipSecureFile; |
| | | import org.apache.poi.sl.usermodel.PictureData; |
| | | import org.apache.poi.ss.usermodel.Cell; |
| | | import org.apache.poi.ss.usermodel.Row; |
| | | import org.apache.poi.ss.usermodel.Sheet; |
| | | import org.apache.poi.ss.usermodel.Workbook; |
| | | import org.apache.poi.util.Units; |
| | | import org.apache.poi.xddf.usermodel.chart.AxisPosition; |
| | | import org.apache.poi.xddf.usermodel.chart.XDDFCategoryAxis; |
| | | import org.apache.poi.xddf.usermodel.chart.XDDFChartData; |
| | | import org.apache.poi.xddf.usermodel.chart.XDDFValueAxis; |
| | | import org.apache.poi.xssf.usermodel.*; |
| | | import org.apache.poi.xssf.usermodel.XSSFCell; |
| | | import org.apache.poi.xssf.usermodel.XSSFRow; |
| | | import org.apache.poi.xssf.usermodel.XSSFSheet; |
| | | import org.apache.poi.xssf.usermodel.XSSFWorkbook; |
| | | import org.apache.poi.xwpf.usermodel.XWPFChart; |
| | | import org.apache.poi.xwpf.usermodel.XWPFDocument; |
| | | import org.apache.poi.xwpf.usermodel.XWPFParagraph; |
| | | import org.apache.poi.xwpf.usermodel.XWPFRun; |
| | | import org.apache.xmlbeans.XmlObject; |
| | | import org.openxmlformats.schemas.drawingml.x2006.chart.*; |
| | | import org.openxmlformats.schemas.officeDocument.x2006.math.CTText; |
| | | import org.openxmlformats.schemas.officeDocument.x2006.math.CTUnSignedInteger; |
| | | import org.openxmlformats.schemas.officeDocument.x2006.math.impl.CTUnSignedIntegerImpl; |
| | | import org.openxmlformats.schemas.wordprocessingml.x2006.main.CTTxbxContent; |
| | | |
| | | import java.awt.*; |
| | | import java.io.*; |
| | | import java.math.BigInteger; |
| | | import java.util.*; |
| | | |
| | | |
| | | import java.io.FileOutputStream; |
| | | import java.io.IOException; |
| | | import java.util.List; |
| | | import java.util.regex.Matcher; |
| | | import java.util.regex.Pattern; |
| | | |