Hello!
I am trying to convert a chart to an svg. I can see documentation for doing this in Aspose.Cells for NET here, but I can’t find the equivalent of this operation in the docs for aspose cloud. I see that I can convert a range or a worksheet to an svg, but I can’t find a way to convert just a chart. The GetWorksheetChartRequest does not accept svg as a valid format.
Is this chart-to-svg conversion possible in aspose cloud?
@jamieMacabacus
We have opened the following new ticket(s) in our internal issue tracking system and will deliver their fixes according to the terms mentioned in Free Support Policies.
Issue ID(s): {CELLSCLOUD-13250}
You can obtain Paid Support Services if you need support on a priority basis, along with the direct access to our Paid Support management team.
@jamieMacabacus Hello, we have added an option to support SVG for the format of GetWorksheetChartRequest in the latest version of cells cloud.
var CellsApi = new CellsApi("Paste your ClientId here", "Paste your ClientSecret here");
ExampleXlsx = "Example.xlsx"
RemoteFolder = "NetSDK"
var uploadRequest = new UploadFileRequest(ExampleXlsx, RemoteFolder + "/" + ExampleXlsx);
cellsApi.UploadFile(uploadRequest);
var request = new GetWorksheetChartRequest(
name: ExampleXlsx,
sheetName: "Sheet4",
chartNumber: 0,
format: "svg",
folder: RemoteFolder,
storageName: ""
);
cellsApi.GetWorksheetChart(request);
Awesome, thank you! Has the version been released yet?
@jamieMacabacus Yes, this version has been released. This function will be separated later to make it more convenient for you to use.