Save the chart image to the specified filename.
Namespace:
CenterSpace.NMath.Charting.MicrosoftAssembly: NMathChartMicrosoft (in NMathChartMicrosoft.dll) Version: 5.1.0.0
Syntax
| C# |
|---|
public static void Save( Chart chart, string filename, ChartImageFormat format ) |
| Visual Basic (Declaration) |
|---|
Public Shared Sub Save ( _ chart As Chart, _ filename As String, _ format As ChartImageFormat _ ) |
| Visual C++ |
|---|
public: static void Save( Chart^ chart, String^ filename, ChartImageFormat format ) |
Parameters
- chart
- Type: Chart
The chart.
- filename
- Type: System..::.String
The filename.
- format
- Type: ChartImageFormat
The image format.
Remarks
Equivalent to:
CopyC#
chart.SaveImage( filename, format );