
The charts provide us a quick and concise mechanism to present the statistical data. It enables the relevant stakeholders to make key decisions quickly. The charts are comprised of data and their respective categories. So the operations like add, update, and deleting chart data in PowerPoint. Its related categories can also be carried out using Aspose.Slides Cloud API.
또한, SDK를 사용하기 위해서는 설치해야 하며, 가장 쉬운 방법은 NuGet 라이브러리를 통해 설치하는 것입니다. 따라서 Package Manager 콘솔에서 다음 명령어를 사용해 보세요.
Install-Package Aspose.Slides-Cloud -Version 21.2.0
The Cloud API can also be accessed using cURL commands over the terminal. So, in order to access them, you need to provide a JWT token which is generated based on your Client ID and Client Secret. Therefore, we recommend you to visit the following links for further understanding about
차트 카테고리 작업하기
새 리소스는 모양의 하위 리소스입니다. 카테고리를 지원하는 차트 모양(열, 선 등)에만 작동합니다. 이 기능을 통해 관련 데이터 포인트와 함께 차트 카테고리를 추가, 수정 및 삭제할 수 있습니다. 이 문서는 주로 다음 주제에 집중합니다.
차트에 카테고리 추가하기
요청 URL
<code>POST https://api.aspose.cloud/v3.0/slides/myPresentaion.pptx/slides/1/shapes/1/categories?folder=myFolder</code>
C#.NET
string MyAppKey = "xxxxxxxx"; // Get AppKey and AppSID from https://dashboard.aspose.cloud/
string MyAppSid = "xxxxxxxx"; // Get AppKey and AppSID from https://dashboard.aspose.cloud/
SlidesApi api = new SlidesApi(MyAppSid, MyAppKey);
ChartCategory dto = new ChartCategory
{
Value = "NewCategory",
DataPoints = new List<OneValueChartDataPoint>
{
new OneValueChartDataPoint { Value = 5.5 },
new OneValueChartDataPoint { Value = 76 },
new OneValueChartDataPoint { Value = 27 }
}
};
PostChartCategoryRequest request = new PostChartCategoryRequest
{
Name = "myPresentaion.pptx",
Folder = "myFolder",
SlideIndex = 1,
ShapeIndex = 1,
Category = dto
};
Chart chart = api.PostChartCategory(request);
Console.WriteLine(chart.Categories.Count);
차트 카테고리 업데이트
요청 URL
<code>PUT https://api.aspose.cloud/v3.0/slides/myPresentaion.pptx/slides/1/shapes/1/categories/2?folder=myFolder</code>
C#.NET
string MyAppKey = "xxxxxxxx"; // Get AppKey and AppSID from https://dashboard.aspose.cloud/
string MyAppSid = "xxxxxxxx"; // Get AppKey and AppSID from https://dashboard.aspose.cloud/
SlidesApi api = new SlidesApi(MyAppSid, MyAppKey);
ChartCategory dto = new ChartCategory
{
Value = "UpdatedCategory",
DataPoints = new List<OneValueChartDataPoint>
{
new OneValueChartDataPoint { Value = 5.5 },
new OneValueChartDataPoint { Value = 76 },
new OneValueChartDataPoint { Value = 27 }
}
};
PutChartCategoryRequest request = new PutChartCategoryRequest
{
Name = "myPresentaion.pptx",
Folder = "myFolder",
SlideIndex = 1,
ShapeIndex = 1,
CategoryIndex = 2,
Category = dto
};
Chart chart = api.PutChartCategory(request);
Console.WriteLine(chart.Categories.Count);
차트 범주 삭제
Aspose.Slides Cloud API는 차트 객체에서 기존 카테고리를 삭제할 수 있는 기능도 제공합니다. 요구 사항을 충족하기 위해 슬라이드의 인덱스, 해당 도형 인덱스 및 관련 카테고리 ID를 제공하기만 하면 됩니다.
요청 URL
<code>DELETE https://api.aspose.cloud/v3.0/slides/myPresentaion.pptx/slides/1/shapes/1/categories/2?folder=myFolder</code>
C#.NET
string MyAppKey = "xxxxxxxx"; // Get AppKey and AppSID from https://dashboard.aspose.cloud/
string MyAppSid = "xxxxxxxx"; // Get AppKey and AppSID from https://dashboard.aspose.cloud/
SlidesApi api = new SlidesApi(MyAppSid, MyAppKey);
DeleteChartCategoryRequest request = new DeleteChartCategoryRequest
{
Name = "myPresentaion.pptx",
Folder = "myFolder",
SlideIndex = 1,
ShapeIndex = 1,
CategoryIndex = 2
};
Chart chart = api.DeleteChartCategory(request);
Console.WriteLine(chart.Categories.Count);
차트 데이터 작업하기
API는 PowerPoint 슬라이드 내의 차트 객체와 관련된 데이터 포인트를 조작할 수 있는 기능을 제공하는 데 완전히 능력이 있습니다. API의 최근 업데이트에 따르면, 새로운 리소스는 시리즈의 하위 리소스입니다. 이 리소스는 차트 모양에 대해서만 작동하며, 개별 데이터 포인트를 추가, 수정 및 삭제할 수 있도록 합니다.
차트 시리즈에 데이터 포인트 추가
이것은 산포 및 버블 시리즈와 함께 작동합니다. 관련 카테고리를 생성하지 않고는 단일 값 시리즈에 대한 데이터 포인트를 생성할 수 없습니다.
요청 URL
<code>POST https://api.aspose.cloud/v3.0/slides/myPresentaion.pptx/slides/1/shapes/1/series/2/dataPoints?folder=myFolder</code>
C#.NET
string MyAppKey = "xxxxxxxx"; // Get AppKey and AppSID from https://dashboard.aspose.cloud/
string MyAppSid = "xxxxxxxx"; // Get AppKey and AppSID from https://dashboard.aspose.cloud/
SlidesApi api = new SlidesApi(MyAppSid, MyAppKey);
ScatterChartDataPoint dto = new ScatterChartDataPoint
{
XValue = 5.5,
YValue = 8
};
PostChartDataPointRequest request = new PostChartDataPointRequest
{
Name = "myPresentaion.pptx",
Folder = "myFolder",
SlideIndex = 1,
ShapeIndex = 1,
SeriesIndex = 2,
DataPoint = dto
};
Chart chart = api.PostChartDataPoint(request);
Console.WriteLine(((ScatterSeries)chart.Series[1]).DataPoints.Count);
차트 데이터 포인트 업데이트
기존 차트 데이터 포인트를 업데이트하기 위해 API를 사용할 수도 있습니다.
요청 URL
<code>PUT https://api.aspose.cloud/v3.0/slides/myPresentaion.pptx/slides/1/shapes/1/series/2/dataPoints/2?folder=myFolder</code>
C#.NET
string MyAppKey = "xxxxxxxx"; // Get AppKey and AppSID from https://dashboard.aspose.cloud/
string MyAppSid = "xxxxxxxx"; // Get AppKey and AppSID from https://dashboard.aspose.cloud/
SlidesApi api = new SlidesApi(MyAppSid, MyAppKey);
ScatterChartDataPoint dto = new ScatterChartDataPoint
{
XValue = 5.5,
YValue = 8
};
PutChartDataPointRequest request = new PutChartDataPointRequest
{
Name = "myPresentaion.pptx",
Folder = "myFolder",
SlideIndex = 1,
ShapeIndex = 1,
SeriesIndex = 2,
PointIndex = 2,
DataPoint = dto
};
Chart chart = api.PutChartDataPoint(request);
Console.WriteLine(((ScatterSeries)chart.Series[1]).DataPoints[1].XValue); //5.5
차트 데이터 포인트 삭제
Chart 객체 내의 모든 기존 데이터 포인트에 대해 API는 PointIndex의 값을 제공하여 모든 포인트를 삭제할 수 있는 기능을 제공합니다.
요청 URL
<code>DELETE https://api.aspose.cloud/v3.0/slides/myPresentaion.pptx/slides/1/shapes/1/series/2/dataPoints/2?folder=myFolder</code>
C#.NET
string MyAppKey = "xxxxxxxx"; // Get AppKey and AppSID from https://dashboard.aspose.cloud/
string MyAppSid = "xxxxxxxx"; // Get AppKey and AppSID from https://dashboard.aspose.cloud/
SlidesApi api = new SlidesApi(MyAppSid, MyAppKey);
DeleteChartDataPointRequest request = new DeleteChartDataPointRequest
{
Name = "myPresentaion.pptx",
Folder = "myFolder",
SlideIndex = 1,
ShapeIndex = 1,
SeriesIndex = 2,
PointIndex = 2
};
Chart chart = api.DeleteChartDataPoint(request);
Console.WriteLine(((ScatterSeries)chart.Series[1]).DataPoints.Count);