Skip to main content
You are viewing help content for a version that is no longer maintained/updated.

DXChartBase.WeakDelegate Property

An object that can respond to the chart’s delegate protocol requests.

Namespace: DevExpress.Xamarin.iOS.Charts

Assembly: DevExpress.Xamarin.iOS.Charts.dll

NuGet Package: DevExpress.XamarinForms.Charts

Declaration

public virtual NSObject WeakDelegate { get; set; }

Property Value

Type Description
Foundation.NSObject

The instance that responds to events and data requests.

Remarks

The Chart can use an instance assigned to this property to handle events or provide data on demand to the chart.

The object’s methods must be decorated with the [Export (“selectorName”)] attribute to respond to each method from the protocol. Alternatively, use the Delegate property that is strongly typed and does not require the [Export] attributes on methods.

See Also