Class RadChartBase
Base class for all charts.
Inherited Members
Namespace: Telerik.XamarinForms.Chart
Assembly: Telerik.XamarinForms.Chart.dll
Syntax
public abstract class RadChartBase : RadView, INotifyNativeControlLoaded, IParentElement
Constructors
RadChartBase()
Fields
BehaviorsProperty
Identifies the Behaviors property.
Declaration
public static readonly BindableProperty BehaviorsProperty
Field Value
Xamarin.Forms.BindableProperty
|
MaxZoomProperty
Identifies the MaxZoom property.
Declaration
public static readonly BindableProperty MaxZoomProperty
Field Value
Xamarin.Forms.BindableProperty
|
PaletteNameProperty
Identifies the PaletteName property.
Declaration
public static readonly BindableProperty PaletteNameProperty
Field Value
Xamarin.Forms.BindableProperty
|
PaletteProperty
Identifies the Palette property.
Declaration
public static readonly BindableProperty PaletteProperty
Field Value
Xamarin.Forms.BindableProperty
|
PanOffsetProperty
Identifies the PanOffset property.
Declaration
public static readonly BindableProperty PanOffsetProperty
Field Value
Xamarin.Forms.BindableProperty
|
SelectionPaletteNameProperty
Identifies the SelectionPaletteName property.
Declaration
public static readonly BindableProperty SelectionPaletteNameProperty
Field Value
Xamarin.Forms.BindableProperty
|
SelectionPaletteProperty
Identifies the SelectionPalette property.
Declaration
public static readonly BindableProperty SelectionPaletteProperty
Field Value
Xamarin.Forms.BindableProperty
|
ZoomProperty
Identifies the Zoom property.
Declaration
public static readonly BindableProperty ZoomProperty
Field Value
Xamarin.Forms.BindableProperty
|
Properties
Behaviors
Gets the behaviors collection.
Declaration
public ObservableCollection<ChartBehavior> Behaviors { get; }
Property Value
System.Collections.ObjectModel.ObservableCollection<ChartBehavior>
|
ChartBehaviors
Gets the behaviors collection.
Declaration
public ObservableCollection<ChartBehavior> ChartBehaviors { get; }
Property Value
System.Collections.ObjectModel.ObservableCollection<ChartBehavior>
|
IsOperational
Gets a value indicating whether the renderer has finished creating the native chart elements.
Declaration
public override bool IsOperational { get; }
Property Value
System.Boolean
|
Overrides
MaxZoom
Gets or sets the MaxZoom.
Declaration
public Size MaxZoom { get; set; }
Property Value
Xamarin.Forms.Size
|
Palette
Gets or sets the Palette.
Declaration
public ChartPalette Palette { get; set; }
Property Value
ChartPalette
|
PaletteName
Gets or sets the PaletteName.
Declaration
public PaletteNames PaletteName { get; set; }
Property Value
PaletteNames
|
PanOffset
Gets or sets the pan offset.
Declaration
public Point PanOffset { get; set; }
Property Value
Xamarin.Forms.Point
|
SelectionPalette
Gets or sets the SelectionPalette.
Declaration
public ChartPalette SelectionPalette { get; set; }
Property Value
ChartPalette
|
SelectionPaletteName
Gets or sets the SelectionPalette.
Declaration
public PaletteNames SelectionPaletteName { get; set; }
Property Value
PaletteNames
|
Zoom
Gets or sets the zoom.
Declaration
public Size Zoom { get; set; }
Property Value
Xamarin.Forms.Size
|
Methods
IsDefaultValue(String)
Tells whether the property with the specified name has a default (invalid) value that should be disregarded while updating the native components.
Declaration
public override bool IsDefaultValue(string propertyName)
Parameters
System.String
propertyName
|
Returns
System.Boolean
|
Overrides
OnChildPropertyChange(Element, String)
Declaration
public virtual void OnChildPropertyChange(Element childElement, string propertyName)
Parameters
Xamarin.Forms.Element
childElement
|
System.String
propertyName
|
Events
ChildPropertyChanged
Occurs when child property has changed.
Declaration
public event EventHandler<ElementPropertyChangedEventArgs> ChildPropertyChanged
Event Type
System.EventHandler<ElementPropertyChangedEventArgs>
|