ChartExportFailedEventArgs Class
Definition
Provides data for the Avalonia.Controls.Charts.ChartBase.ExportFailed event.
public class ChartExportFailedEventArgs
Constructors
| Name | Description |
|---|---|
| ChartExportFailedEventArgs | Initializes a new instance of the Avalonia.Controls.Charts.ChartExportFailedEventArgs class. |
ChartExportFailedEventArgs Constructor
Initializes a new instance of the Avalonia.Controls.Charts.ChartExportFailedEventArgs class.
public ChartExportFailedEventArgs(string target, Exception exception)
Parameters
target string
exception Exception
Properties
| Name | Description |
|---|---|
| Exception | Gets the exception that caused the failure. |
| Target | Gets the export target (file path or "stream"). |
Exception Property
Gets the exception that caused the failure.
public Exception Exception { get; set; }
Target Property
Gets the export target (file path or "stream").
public string Target { get; set; }