Chart.ToPdf
Contents
[
Hide
]ToPdf(string)
Saves the chart to a pdf file.
public void ToPdf(string fileName)
| Parameter | Type | Description |
|---|---|---|
| fileName | String | the pdf file name with full path |
Examples
using System;
using Aspose.Cells;
using Aspose.Cells.Charts;
namespace AsposeCellsExamples
{
public class ChartMethodToPdfWithStringDemo
{
public static void Run()
{
// Create a new workbook
Workbook workbook = new Workbook();
// Access first worksheet and add sample data
Worksheet worksheet = workbook.Worksheets[0];
worksheet.Cells["A1"].PutValue("Category");
worksheet.Cells["A2"].PutValue("Fruits");
worksheet.Cells["A3"].PutValue("Vegetables");
worksheet.Cells["B1"].PutValue("Value");
worksheet.Cells["B2"].PutValue(50);
worksheet.Cells["B3"].PutValue(30);
// Add a chart to the worksheet
int chartIndex = worksheet.Charts.Add(Aspose.Cells.Charts.ChartType.Column, 5, 0, 20, 8);
Aspose.Cells.Charts.Chart chart = worksheet.Charts[chartIndex];
// Set chart data source
chart.NSeries.Add("B2:B3", true);
chart.NSeries.CategoryData = "A2:A3";
// Export chart to PDF
chart.ToPdf("output_chart.pdf");
Console.WriteLine("Chart exported to PDF successfully.");
}
}
}
See Also
- class Chart
- namespace Aspose.Cells.Charts
- assembly Aspose.Cells
ToPdf(string, float, float, PageLayoutAlignmentType, PageLayoutAlignmentType)
Saves the chart to a pdf file.
public void ToPdf(string fileName, float desiredPageWidth, float desiredPageHeight,
PageLayoutAlignmentType hAlignmentType, PageLayoutAlignmentType vAlignmentType)
| Parameter | Type | Description |
|---|---|---|
| fileName | String | the pdf file name with full path |
| desiredPageWidth | Single | The desired page width in inches. |
| desiredPageHeight | Single | The desired page height in inches. |
| hAlignmentType | PageLayoutAlignmentType | The chart horizontal alignment type in the output page. |
| vAlignmentType | PageLayoutAlignmentType | The chart vertical alignment type in the output page. |
Examples
using System;
using Aspose.Cells;
using Aspose.Cells.Charts;
namespace AsposeCellsExamples
{
public class ChartMethodToPdfWithStringSingleSinglePageLayoutAlDemo
{
public static void Run()
{
Workbook workbook = new Workbook();
Worksheet worksheet = workbook.Worksheets[0];
worksheet.Cells["A1"].PutValue("Data");
worksheet.Cells["A2"].PutValue(10);
worksheet.Cells["A3"].PutValue(20);
worksheet.Cells["A4"].PutValue(30);
int chartIndex = worksheet.Charts.Add(ChartType.Column, 5, 0, 15, 5);
Chart chart = worksheet.Charts[chartIndex];
chart.SetChartDataRange("A1:A4", true);
chart.Title.Text = "Demo Chart";
chart.ToPdf("ChartDemo.pdf", 8.5f, 11f, PageLayoutAlignmentType.Center, PageLayoutAlignmentType.Center);
}
}
}
See Also
- enum PageLayoutAlignmentType
- class Chart
- namespace Aspose.Cells.Charts
- assembly Aspose.Cells
ToPdf(Stream)
Creates the chart pdf and saves it to a stream.
public void ToPdf(Stream stream)
| Parameter | Type | Description |
|---|---|---|
| stream | Stream | The output stream. |
Examples
using System;
using System.IO;
using Aspose.Cells;
using Aspose.Cells.Charts;
namespace AsposeCellsExamples
{
public class ChartMethodToPdfWithStreamDemo
{
public static void Run()
{
// Create a new workbook and get the first worksheet
Workbook workbook = new Workbook();
Worksheet worksheet = workbook.Worksheets[0];
// Populate some sample data for the chart
worksheet.Cells["A1"].PutValue("Category");
worksheet.Cells["B1"].PutValue("Value");
worksheet.Cells["A2"].PutValue("Apple");
worksheet.Cells["B2"].PutValue(30);
worksheet.Cells["A3"].PutValue("Banana");
worksheet.Cells["B3"].PutValue(45);
worksheet.Cells["A4"].PutValue("Cherry");
worksheet.Cells["B4"].PutValue(25);
// Add a column chart to the worksheet
int chartIndex = worksheet.Charts.Add(ChartType.Column, 5, 0, 20, 8);
Chart chart = worksheet.Charts[chartIndex];
// Set the data source for the chart
chart.NSeries.Add("B2:B4", true);
chart.NSeries.CategoryData = "A2:A4";
try
{
// Export the chart to a PDF using a FileStream
using (FileStream pdfStream = new FileStream("ChartOutput.pdf", FileMode.Create, FileAccess.Write))
{
chart.ToPdf(pdfStream);
}
Console.WriteLine("Chart successfully exported to ChartOutput.pdf");
}
catch (Exception ex)
{
Console.WriteLine($"Error exporting chart to PDF: {ex.Message}");
}
}
}
}
See Also
- class Chart
- namespace Aspose.Cells.Charts
- assembly Aspose.Cells
ToPdf(Stream, float, float, PageLayoutAlignmentType, PageLayoutAlignmentType)
Creates the chart pdf and saves it to a stream.
public void ToPdf(Stream stream, float desiredPageWidth, float desiredPageHeight,
PageLayoutAlignmentType hAlignmentType, PageLayoutAlignmentType vAlignmentType)
| Parameter | Type | Description |
|---|---|---|
| stream | Stream | The output stream. |
| desiredPageWidth | Single | The desired page width in inches. |
| desiredPageHeight | Single | The desired page height in inches. |
| hAlignmentType | PageLayoutAlignmentType | The chart horizontal alignment type in the output page. |
| vAlignmentType | PageLayoutAlignmentType | The chart vertical alignment type in the output page. |
Examples
namespace AsposeCellsExamples
{
using Aspose.Cells;
using Aspose.Cells.Charts;
using System;
using System.IO;
public class ChartMethodToPdfWithStreamSingleSinglePageLayoutAl115534Demo
{
public static void Run()
{
// Create a new workbook
Workbook workbook = new Workbook();
Worksheet worksheet = workbook.Worksheets[0];
// Add sample data for the chart
worksheet.Cells["A1"].PutValue("Category");
worksheet.Cells["A2"].PutValue("A");
worksheet.Cells["A3"].PutValue("B");
worksheet.Cells["A4"].PutValue("C");
worksheet.Cells["B1"].PutValue("Value");
worksheet.Cells["B2"].PutValue(10);
worksheet.Cells["B3"].PutValue(20);
worksheet.Cells["B4"].PutValue(30);
// Add a chart to the worksheet
int chartIndex = worksheet.Charts.Add(ChartType.Column, 5, 0, 20, 8);
Chart chart = worksheet.Charts[chartIndex];
// Set chart data range
chart.NSeries.Add("B2:B4", true);
chart.NSeries.CategoryData = "A2:A4";
try
{
// Create a memory stream to save the PDF
using (MemoryStream stream = new MemoryStream())
{
// Call the ToPdf method with Stream, Single, Single, PageLayoutAlignmentType, PageLayoutAlignmentType parameters
float desiredPageWidth = 8.5f; // 8.5 inches
float desiredPageHeight = 11f; // 11 inches
PageLayoutAlignmentType hAlignment = PageLayoutAlignmentType.Center;
PageLayoutAlignmentType vAlignment = PageLayoutAlignmentType.Center;
chart.ToPdf(stream, desiredPageWidth, desiredPageHeight, hAlignment, vAlignment);
Console.WriteLine("Chart successfully converted to PDF in memory stream.");
Console.WriteLine($"PDF stream length: {stream.Length} bytes");
}
}
catch (Exception ex)
{
Console.WriteLine($"Error converting chart to PDF: {ex.Message}");
}
// Save the workbook
workbook.Save("ChartToPdfDemo.xlsx");
}
}
}
See Also
- enum PageLayoutAlignmentType
- class Chart
- namespace Aspose.Cells.Charts
- assembly Aspose.Cells