Skip to main content

ChartExportFailedEventArgs Class

Definition

Assembly:Avalonia.Controls.Charts
Package:Avalonia.Controls.Charts
public class ChartExportFailedEventArgs

Inheritance: EventArgs -> ChartExportFailedEventArgs

Constructors

NameDescription
ChartExportFailedEventArgsInitializes 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

NameDescription
ExceptionGets the exception that caused the failure.
TargetGets 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; }