نمودار
Contents
[
Hide
]
مثالهایی برای افزودن، دسترسی، حذف و بهروزرسانی انواع مختلف نمودار با Aspose.Slides for C++. قطعهکدهای زیر عملیات پایهای نمودار را نشان میدهند.
افزودن یک نمودار
این متد یک نمودار منطقهای ساده را به اسلاید اول اضافه میکند.
static void AddChart()
{
auto presentation = MakeObject<Presentation>();
auto slide = presentation->get_Slide(0);
// یک نمودار ناحیه ساده به اسلاید اول اضافه کنید.
auto chart = slide->get_Shapes()->AddChart(ChartType::Area, 50, 50, 400, 300);
presentation->Dispose();
}
دسترسی به یک نمودار
پس از ایجاد یک نمودار، میتوانید آن را از طریق مجموعه اشکال بازیابی کنید.
static void AccessChart()
{
auto presentation = MakeObject<Presentation>();
auto slide = presentation->get_Slide(0);
auto chart = slide->get_Shapes()->AddChart(ChartType::Line, 50, 50, 400, 300);
// دسترسی به اولین نمودار در اسلاید.
auto firstChart = SharedPtr<IChart>();
for (auto&& shape : slide->get_Shapes())
{
if (ObjectExt::Is<IChart>(shape))
{
firstChart = ExplicitCast<IChart>(shape);
break;
}
}
presentation->Dispose();
}
حذف یک نمودار
کد زیر یک نمودار را از اسلاید حذف میکند.
static void RemoveChart()
{
auto presentation = MakeObject<Presentation>();
auto slide = presentation->get_Slide(0);
auto chart = slide->get_Shapes()->AddChart(ChartType::Pie, 50, 50, 400, 300);
// نمودار را حذف کنید.
slide->get_Shapes()->Remove(chart);
presentation->Dispose();
}
بهروزرسانی دادههای نمودار
میتوانید ویژگیهای نمودار مانند عنوان را تغییر دهید.
static void UpdateChartData()
{
auto presentation = MakeObject<Presentation>();
auto slide = presentation->get_Slide(0);
auto chart = slide->get_Shapes()->AddChart(ChartType::Column3D, 50, 50, 400, 300);
// عنوان نمودار را تغییر دهید.
chart->get_ChartTitle()->AddTextFrameForOverriding(u"Sales Report");
presentation->Dispose();
}