Aspose.Sildes and Charts?

Hello I#m Michael,

my goal is to generate Powerpoint Files including charts on a multithreaded server and give them to a visitor of my homepage.

I saw in the Demo, that they use "using Aspose.Chart;" to work with charts. In the evaluation of aspose.sildes i do not find that. Why?

Is this an extra component? How much does this then cost?

Best regards Michael Topor-Grabowski

Hi Michael,

In which demo did you see Aspose.Charts? Current practice is to create the charts in MS Excel using Aspose.Cells for .NET and embedding them as OLE object in ppt slides using Aspose.Slides for .NET. An example can be found here.

Hi MSabir,

i saw it here: GitHub Repositories for Examples, Plugins and Showcases of Aspose APIs for .NET, Java, C++ and Android
in der sourcefile of Source: default.aspx.cs.

There you use

using Aspose.Chart;

 private void createChart()
{
// Create a new Chart
Chart.Chart Chart1 = new Chart.Chart();

// Determine if 3D Chart is selected
if (ckb3DChart.Checked)
{
Chart1.ChartArea.IsThreeD = true;
Chart1.ChartArea.ThreeDDepth = 200;
}
else
{
Chart1.ChartArea.IsThreeD = false;
}

// Make Chart Area fully non-see though
Chart1.ChartArea.Transparence = 255;


This implies that Aspose.Chart is part of Aspose.Slides.
cu@ here

Hello,

Aspose.Charts is not a part of Aspose.Slides. It was a separate component. Now it’s a part of Aspose.Report.