Skip to main content

PieChartMapLayer Class

Definition

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

A map layer that draws pie charts at specific geographic coordinates.

public class PieChartMapLayer

Inheritance: object -> AvaloniaObject -> MapLayer -> PieChartMapLayer

Constructors

NameDescription
PieChartMapLayerNo summary available.

PieChartMapLayer Constructor

public PieChartMapLayer()

Methods

NameDescription
GetLayerBoundsGets the geographic bounds (in 0-200, 0-100 viewport units) of the content in this layer. Used for auto-scaling the map to fit content.
GetPointDataGets the data item at the specified screen point.
OnPointerExitedHandles pointer exited events. Override this method to handle interactions (e.g. clearing hover effects).
OnPointerMovedHandles pointer moved events. Override this method to handle interactions (e.g. hover effects).
RenderRenders this layer to the drawing context.
OnPointerPressedHandles pointer pressed events. Override this method to handle interactions (e.g. selection). Inherited from MapLayer.
Bind (8 overloads)Binds a Avalonia.AvaloniaProperty to an Avalonia.Data.BindingBase. Inherited from AvaloniaObject.
CheckAccessReturns a value indicating whether the current thread is the UI thread. Inherited from AvaloniaObject.
ClearValue (4 overloads)Clears a Avalonia.AvaloniaProperty's local value. Inherited from AvaloniaObject.
CoerceValueCoerces the specified Avalonia.AvaloniaProperty. Inherited from AvaloniaObject.
EqualsCompares two objects using reference equality. Inherited from AvaloniaObject.
GetBaseValueInherited from AvaloniaObject.
GetHashCodeGets the hash code for the object. Inherited from AvaloniaObject.
GetValue (3 overloads)Gets a Avalonia.AvaloniaProperty value. Inherited from AvaloniaObject.
IsAnimatingChecks whether a Avalonia.AvaloniaProperty is animating. Inherited from AvaloniaObject.
IsSetChecks whether a Avalonia.AvaloniaProperty is set on this object. Inherited from AvaloniaObject.
SetCurrentValue (2 overloads)Sets the value of a dependency property without changing its value source. Inherited from AvaloniaObject.
SetValue (3 overloads)Sets a Avalonia.AvaloniaProperty value. Inherited from AvaloniaObject.
VerifyAccessChecks that the current thread is the UI thread and throws if not. Inherited from AvaloniaObject.

GetLayerBounds Method

Gets the geographic bounds (in 0-200, 0-100 viewport units) of the content in this layer. Used for auto-scaling the map to fit content.

public Nullable<Avalonia.Rect> GetLayerBounds()

Returns

Nullable<Avalonia.Rect>

GetPointData Method

Gets the data item at the specified screen point.

public object GetPointData(Avalonia.Point point, Avalonia.Rect chartArea)

Parameters

point Avalonia.Point

The screen point to test.

chartArea Avalonia.Rect

The chart area rectangle.

Returns

object

The data item if hit; otherwise, null.

OnPointerExited Method

Handles pointer exited events. Override this method to handle interactions (e.g. clearing hover effects).

public void OnPointerExited()

OnPointerMoved Method

Handles pointer moved events. Override this method to handle interactions (e.g. hover effects).

public bool OnPointerMoved(Avalonia.Point point, Avalonia.Rect chartArea)

Parameters

point Avalonia.Point

chartArea Avalonia.Rect

Returns

bool

True if handled.

Render Method

Renders this layer to the drawing context.

public void Render(Avalonia.Media.DrawingContext context, Avalonia.Rect chartArea, double animationProgress)

Parameters

context Avalonia.Media.DrawingContext

The drawing context.

chartArea Avalonia.Rect

The chart area rectangle.

animationProgress double

Animation progress from 0 to 1.

Properties

NameDescription
ItemsSourceGets or sets the collection of items to draw pie charts for.
LabelPathPath to the label property within the segment object.
LatitudePathGets or sets the property path for the latitude coordinate.
LongitudePathGets or sets the property path for the longitude coordinate.
PaletteGets or sets the color palette used for pie slices.
PieSizeGets or sets the size (diameter) of the pie charts.
ValuePathPath to the numeric value property within the segment object. If null, assumes the segment object itself is a number.
ValuesPathPath to the collection of values/segments object within the data item.
IsVisibleGets or sets whether this layer is visible. Inherited from MapLayer.
OpacityGets or sets the opacity of this layer. Inherited from MapLayer.
TooltipTemplateGets or sets the data template used for tooltips. Inherited from MapLayer.
DispatcherReturns the Avalonia.AvaloniaObject.Dispatcher that this Avalonia.AvaloniaObject is associated with. Inherited from AvaloniaObject.
ItemInherited from AvaloniaObject.

ItemsSource Property

Gets or sets the collection of items to draw pie charts for.

public System.Collections.IEnumerable ItemsSource { get; set; }

LabelPath Property

Path to the label property within the segment object.

public string LabelPath { get; set; }

LatitudePath Property

Gets or sets the property path for the latitude coordinate.

public string LatitudePath { get; set; }

LongitudePath Property

Gets or sets the property path for the longitude coordinate.

public string LongitudePath { get; set; }

Palette Property

Gets or sets the color palette used for pie slices.

public System.Collections.Generic.IReadOnlyList<Avalonia.Media.Color> Palette { get; set; }

PieSize Property

Gets or sets the size (diameter) of the pie charts.

public double PieSize { get; set; }

ValuePath Property

Path to the numeric value property within the segment object. If null, assumes the segment object itself is a number.

public string ValuePath { get; set; }

ValuesPath Property

Path to the collection of values/segments object within the data item.

public string ValuesPath { get; set; }

Fields

ItemsSourceProperty Field

Identifies the Avalonia.Controls.Charts.PieChartMapLayer.ItemsSource Avalonia property.

public Avalonia.StyledProperty<System.Collections.IEnumerable> ItemsSourceProperty

LabelPathProperty Field

Identifies the Avalonia.Controls.Charts.PieChartMapLayer.LabelPath Avalonia property.

public Avalonia.StyledProperty<string> LabelPathProperty

LatitudePathProperty Field

Identifies the Avalonia.Controls.Charts.PieChartMapLayer.LatitudePath Avalonia property.

public Avalonia.StyledProperty<string> LatitudePathProperty

LongitudePathProperty Field

Identifies the Avalonia.Controls.Charts.PieChartMapLayer.LongitudePath Avalonia property.

public Avalonia.StyledProperty<string> LongitudePathProperty

PaletteProperty Field

Identifies the Avalonia.Controls.Charts.PieChartMapLayer.Palette Avalonia property.

public Avalonia.StyledProperty<System.Collections.Generic.IReadOnlyList<Avalonia.Media.Color>> PaletteProperty

PieSizeProperty Field

Identifies the Avalonia.Controls.Charts.PieChartMapLayer.PieSize Avalonia property.

public Avalonia.StyledProperty<double> PieSizeProperty

ValuePathProperty Field

Identifies the Avalonia.Controls.Charts.PieChartMapLayer.ValuePath Avalonia property.

public Avalonia.StyledProperty<string> ValuePathProperty

ValuesPathProperty Field

Identifies the Avalonia.Controls.Charts.PieChartMapLayer.ValuesPath Avalonia property.

public Avalonia.StyledProperty<string> ValuesPathProperty

Events

NameDescription
InvalidatedEvent raised when the layer needs to be redrawn. Inherited from MapLayer.
PropertyChangedRaised when a Avalonia.AvaloniaProperty value changes on this object. Inherited from AvaloniaObject.