Skip to main content

ChartExportResult Class

Definition

Assembly:Avalonia.Controls.Charts
Package:Avalonia.Controls.Charts

Describes the outcome of a chart export operation.

public class ChartExportResult

Inheritance: object -> ChartExportResult

Properties

NameDescription
CanceledGets whether the export was canceled.
ExceptionGets the exception that caused the export to fail, if any.
SucceededGets whether the export completed successfully.
TargetGets the export target path or target description.

Canceled Property

Gets whether the export was canceled.

public bool Canceled { get; set; }

Exception Property

Gets the exception that caused the export to fail, if any.

public Exception Exception { get; set; }

Succeeded Property

Gets whether the export completed successfully.

public bool Succeeded { get; set; }

Target Property

Gets the export target path or target description.

public string Target { get; set; }