
הטבלאות מספקות לנו מנגנון מהיר ותמציתי כדי להציג את הנתונים הסטטיסטיים. זה מאפשר לגורמים הרלוונטיים לקבל החלטות מרכזיות במהירות. הטבלאות מורכבות מנתונים והקטגוריות הרלוונטיות שלהן. לכן, פעולות כמו הוספה, עדכון ומחיקת נתוני טבלה ב- PowerPoint. קטגוריות קשורות יכולות גם להתבצע באמצעות Aspose.Slides Cloud API.
יתר על כן, על מנת להשתמש ב-SDK, אתה צריך להתקין אותו וכך הדרך הקלה ביותר היא באמצעות ספריית NuGet. אז, בבקשה נסה להשתמש בפקודה הבאה בקונסולת ניהול החבילות
Install-Package Aspose.Slides-Cloud -Version 21.2.0
ה-Cloud API יכול גם להיות נגיש באמצעות פקודות cURL באמצעות הטרמינל. לכן, על מנת לגשת אליהם, עליך לספק אסימון JWT שנוצר על סמך מזהה הלקוח שלך וסוד הלקוח. לכן, אנו ממליצים לך לבקר בקישורים הבאים להבנה נוספת על
עבודה עם קטגוריות בשולחן נתונים
המשאב החדש הוא משאב משנה של צורה. הוא עובד רק עבור צורות של תרשימים התומכות בקטגוריות (עמודה, קו וכו’).הוא מאפשר לנו להוסיף, לשנות ולהסיר קטגוריות תרשימים יחד עם נקודות נתונים רלוונטיות. מאמר זה מתמקד בעיקר בנושאים הבאים
הוסף קטגוריה לגרף
בקשת 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);
מחק את קטגוריית הגרף
The Aspose.Slides Cloud API גם מציע את היכולות למחוק כל קטגוריה קיימת באובייקטי גרף. אתה רק צריך לספק את האינדקס של שקף, אינדקס הצורה הרלוונטי, ואת מזהה הקטגוריה הקשור כדי למלא את הדרישות.
בקשת 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. בהתאם לעדכונים האחרונים בממשק, המשאב החדש הוא תתי-משאב של סדרות. הוא פועל רק עבור צורות תרשים ומאפשר לנו להוסיף, לשנות ולמחוק נקודות נתונים individuales.
הוסף נקודת נתון לסדרת תרשים
זה עובד עם סדרות פיזור ובועות. אינך יכול ליצור נקודת נתון עבור סדרת ערך אחד מבלי ליצור קטגוריה רלוונטית.
בקשת 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
מחק נקודת נתון של גרף
לכל נקודות הנתונים הקיימות בתוך אובייקט הגרף, ה- 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);