[]
Saves the chart image to the provided stream using the specified image format.
public void SaveImage(Stream stream, ImageFormat imageFormat)
Public Sub SaveImage(stream As Stream, imageFormat As ImageFormat)
| Type | Name | Description |
|---|---|---|
| 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 void SaveImage(Stream stream, ImageFormat imageFormat, double dpiX, double dpiY)
Public Sub SaveImage(stream As Stream, imageFormat As ImageFormat, dpiX As Double, dpiY As Double)
| Type | Name | Description |
|---|---|---|
| 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 void SaveImage(Stream stream, BitmapEncoder encoder, double dpiX, double dpiY)
Public Sub SaveImage(stream As Stream, encoder As BitmapEncoder, dpiX As Double, dpiY As Double)
| Type | Name | Description |
|---|---|---|
| Stream | stream | |
| BitmapEncoder | encoder | |
| double | dpiX | |
| double | dpiY |