[]
Saves the chart image to the provided stream using the specified image format.
public static void SaveImage(this C1Chart chart, Stream stream, ImageFormat imageFormat)
Public Shared Sub SaveImage(chart As C1Chart, stream As Stream, imageFormat As ImageFormat)
| Type | Name | Description |
|---|---|---|
| C1Chart | chart | |
| Stream | stream | |
| ImageFormat | imageFormat |
Saves the chart image to the provided stream using the specified image format with the specified horizontal and vertical resolution.
public static void SaveImage(this C1Chart chart, Stream stream, ImageFormat imageFormat, double dpiX, double dpiY)
Public Shared Sub SaveImage(chart As C1Chart, stream As Stream, imageFormat As ImageFormat, dpiX As Double, dpiY As Double)
| Type | Name | Description |
|---|---|---|
| C1Chart | chart | |
| Stream | stream | |
| ImageFormat | imageFormat | |
| double | dpiX | |
| double | dpiY |
Saves the chart image to the provided stream using the specified encoder with the specified horizontal and vertical resolution.
public static void SaveImage(this C1Chart chart, Stream stream, BitmapEncoder encoder, double dpiX, double dpiY)
Public Shared Sub SaveImage(chart As C1Chart, stream As Stream, encoder As BitmapEncoder, dpiX As Double, dpiY As Double)
| Type | Name | Description |
|---|---|---|
| C1Chart | chart | |
| Stream | stream | |
| BitmapEncoder | encoder | |
| double | dpiX | |
| double | dpiY |