1

我想通过调用此 API 路由将创建的 ThinQuery 导出为图形(饼图,线...),但不知道要为“svg”参数发送什么。

请帮我一个“svg”参数示例。

/**
 * Export PDF with chart
 * @summary Export PDF with Chart.
 * @param queryName The query.
 * @param svg The SVG string
 * @return A response with a PDF file
 */
@POST
@Produces({"application/pdf" })
@Path("/{queryname}/export/pdf")
public Response exportPdfWithChart(
        @PathParam("queryname")  String queryName,
        @PathParam("svg")  @DefaultValue("") String svg)
{
    return exportPdfWithChartAndFormat(queryName, null, svg, null);
}
4

0 回答 0