PolarChart
Class
Assembly LiveChartsCore.SkiaSharpView.Maui
Namespace LiveChartsCore.SkiaSharpView.Maui
Summary:
Implements:
Constructors
// Initializes a new instance of the PolarChart class.
Properties
Gets the core canvas.
Type: CoreMotionCanvas
Type: CoreMotionCanvas
Gets or sets the Synchronization Context, use this property to
use an external object to handle multi threading synchronization.
Type: Object
Type: Object
Gets or sets the draw margin, if this property is null, the library will calculate a margin, this margin is the distance
between the view bounds and the drawable area.
Type: Margin
Type: Margin
Gets whether the chart scales to try to fit the plot to the series bounds, it calculates a new center of the radial chart,
default is false.
Type: Boolean
Type: Boolean
Gets or sets the total circumference angle in degrees, default is 360.
Type: Double
Type: Double
Gets or sets the inner radius, default is 0.
Type: Double
Type: Double
Gets or sets the initial rotation, default is 0.
Type: Double
Type: Double
Gets or sets the chart title.
Type: VisualElement
Type: VisualElement
Gets or sets the series to plot in the user interface.
Type: IEnumerable<ISeries>
Type: IEnumerable<ISeries>
Gets or sets the angle axes.
Type: IEnumerable<IPolarAxis>
Type: IEnumerable<IPolarAxis>
Gets or sets the radius axes.
Type: IEnumerable<IPolarAxis>
Type: IEnumerable<IPolarAxis>
Gets or sets the visual elements.
Type: IEnumerable<ChartElement>
Type: IEnumerable<ChartElement>
Gets or sets the animations speed.
Type: TimeSpan
Type: TimeSpan
Gets or sets the legend position.
Type: LegendPosition
Type: LegendPosition
Gets or sets the legend background paint, when null the library will use the default background paint.
Type: Paint
Type: Paint
Gets or sets the legend default text paint, when null the library will use the default text paint.
Type: Paint
Type: Paint
Gets or sets the legend text size, when null the library will use the default text size.
Type: Double
Type: Double
Gets or sets the legend.
Type: IChartLegend
Type: IChartLegend
Gets or sets the tooltip position.
Type: TooltipPosition
Type: TooltipPosition
Gets or sets the tooltip background paint, when null the library will use the default background paint.
Type: Paint
Type: Paint
Gets or sets the tooltip default text paint, when null the library will use the default text paint.
Type: Paint
Type: Paint
Gets or sets the tooltip text size, when null the library will use the default text size.
Type: Double
Type: Double
Gets or sets the tooltip.
Type: IChartTooltip
Type: IChartTooltip
Gets or sets a value indicating whether the automatic updates are enabled.
Type: Boolean
Type: Boolean
Gets or sets the updater throttler, this property controls the interval where the user interface updates.
Type: TimeSpan
Type: TimeSpan
Gets or sets a command to execute when the chart update started.
Type: ICommand
Type: ICommand
Gets or sets a command to execute when the pressed the chart.
Type: ICommand
Type: ICommand
Gets or sets a command to execute when the users released the press on the chart.
Type: ICommand
Type: ICommand
Gets or sets a command to execute when the pointer/finger moves over the chart.
Type: ICommand
Type: ICommand
Gets or sets a command to execute when the pointer goes down on a data or data points.
Type: ICommand
Type: ICommand
Gets or sets a command to execute when the hovered points change.
Type: ICommand
Type: ICommand
Gets or sets a command to execute when the pointer goes down on a chart point.
Type: ICommand
Type: ICommand
Gets or sets a command to execute when the pointer goes down on a chart point.
Type: ICommand
Type: ICommand
Public static fields
The sync context property.
Type: BindableProperty
Type: BindableProperty
The fit to bounds property.
Type: BindableProperty
Type: BindableProperty
The total angle property.
Type: BindableProperty
Type: BindableProperty
The Inner radius property.
Type: BindableProperty
Type: BindableProperty
The Initial rotation property.
Type: BindableProperty
Type: BindableProperty
The title property.
Type: BindableProperty
Type: BindableProperty
The series property.
Type: BindableProperty
Type: BindableProperty
The visual elements property.
Type: BindableProperty
Type: BindableProperty
The x axes property.
Type: BindableProperty
Type: BindableProperty
The y axes property.
Type: BindableProperty
Type: BindableProperty
The animations speed property.
Type: BindableProperty
Type: BindableProperty
The easing function property.
Type: BindableProperty
Type: BindableProperty
The legend position property.
Type: BindableProperty
Type: BindableProperty
The legend background property.
Type: BindableProperty
Type: BindableProperty
The legend text paint property.
Type: BindableProperty
Type: BindableProperty
The legend text size property.
Type: BindableProperty
Type: BindableProperty
The tool tip position property.
Type: BindableProperty
Type: BindableProperty
The too ltip finding strategy property.
Type: BindableProperty
Type: BindableProperty
The tooltip background property.
Type: BindableProperty
Type: BindableProperty
The tooltip text paint property.
Type: BindableProperty
Type: BindableProperty
The tooltip text size property.
Type: BindableProperty
Type: BindableProperty
The update started command.
Type: BindableProperty
Type: BindableProperty
The pressed command.
Type: BindableProperty
Type: BindableProperty
The released command.
Type: BindableProperty
Type: BindableProperty
The pointer move command.
Type: BindableProperty
Type: BindableProperty
The data pointer down command property
Type: BindableProperty
Type: BindableProperty
The hovered points chaanged command property
Type: BindableProperty
Type: BindableProperty
The chart point pointer down command property
Type: BindableProperty
Type: BindableProperty
The visual elements pointer down command property
Type: BindableProperty
Type: BindableProperty
Events
Occurs before the chart is measured, this is the first step before the chart updates.
Handler definition: ChartEventHandler
Handler definition: ChartEventHandler
Occurs when the chart started an update, just when the drawing loop started.
Handler definition: ChartEventHandler
Handler definition: ChartEventHandler
Occurs when a chart update finished, just when the drawing loop finished.
Handler definition: ChartEventHandler
Handler definition: ChartEventHandler
Occurs when the pointer goes down over a chart point(s).
Handler definition: ChartPointsHandler
Handler definition: ChartPointsHandler
Occurs when the hovered points in the chart change.
Handler definition: ChartPointHoverHandler
Handler definition: ChartPointHoverHandler
Occurs when the pointer goes down over a chart point, if there are multiple points, the closest one will be selected.
Handler definition: ChartPointHandler
Handler definition: ChartPointHandler
Occurs when the pointer goes down over a visual element.
Handler definition: VisualElementsHandler
Handler definition: VisualElementsHandler
Methods
// Gets all the ChartPoint that contain the given point.
| LvcPointD point, | // The given point. |
| FindingStrategy strategy, | // The finding strategy, default is Automatic. |
| FindPointFor findPointFor | // The find point for, default is HoverEvent. |
)