CartesianChart
Class
Assembly LiveChartsCore.SkiaSharpView.Blazor
Namespace LiveChartsCore.SkiaSharpView.Blazor
Summary:
Implements:
Properties
Gets or sets the series to plot in the user interface.
Type: IEnumerable<ISeries>
Type: IEnumerable<ISeries>
Gets or sets the x axes.
Type: IEnumerable<ICartesianAxis>
Type: IEnumerable<ICartesianAxis>
Gets or sets the y axes.
Type: IEnumerable<ICartesianAxis>
Type: IEnumerable<ICartesianAxis>
Gets or sets the sections.
Type: IEnumerable<Section<SkiaSharpDrawingContext>>
Type: IEnumerable<Section<SkiaSharpDrawingContext>>
Gets or sets the draw margin frame.
Type: DrawMarginFrame<SkiaSharpDrawingContext>
Type: DrawMarginFrame<SkiaSharpDrawingContext>
Gets or sets the zoom mode.
Type: ZoomAndPanMode
Type: ZoomAndPanMode
Gets or sets the zooming speed from 0 to 1, where 0 is the slowest and 1 the fastest.
Type: Double
Type: Double
Gets or sets the tool tip finding strategy.
Type: TooltipFindingStrategy
Type: TooltipFindingStrategy
Gets the actual class.
Type: String
Type: String
Gets the canvas element.
Type: ElementReference
Type: ElementReference
Gets or sets the container css class.
Type: String
Type: String
Gets or sets the legend class.
Type: String
Type: String
Gets or sets the tooltip class.
Type: String
Type: String
Gets the core canvas.
Type: MotionCanvas<SkiaSharpDrawingContext>
Type: MotionCanvas<SkiaSharpDrawingContext>
Gets or sets the chart title.
Type: VisualElement<SkiaSharpDrawingContext>
Type: VisualElement<SkiaSharpDrawingContext>
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 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 animations speed.
Type: TimeSpan
Type: TimeSpan
Gets or sets the legend position.
Type: LegendPosition
Type: LegendPosition
Gets or sets the legend.
Type: IChartLegend<SkiaSharpDrawingContext>
Type: IChartLegend<SkiaSharpDrawingContext>
Gets or sets the legend default text paint, when null the library will use the default text paint.
Type: IPaint<SkiaSharpDrawingContext>
Type: IPaint<SkiaSharpDrawingContext>
Gets or sets the legend background paint, when null the library will use the default background paint.
Type: IPaint<SkiaSharpDrawingContext>
Type: IPaint<SkiaSharpDrawingContext>
Gets or sets the tooltip position.
Type: TooltipPosition
Type: TooltipPosition
Gets or sets the tooltip.
Type: IChartTooltip<SkiaSharpDrawingContext>
Type: IChartTooltip<SkiaSharpDrawingContext>
Gets or sets the tooltip default text paint, when null the library will use the default text paint.
Type: IPaint<SkiaSharpDrawingContext>
Type: IPaint<SkiaSharpDrawingContext>
Gets or sets the tooltip background paint, when null the library will use the default background paint.
Type: IPaint<SkiaSharpDrawingContext>
Type: IPaint<SkiaSharpDrawingContext>
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 the visual elements.
Type: IEnumerable<ChartElement<SkiaSharpDrawingContext>>
Type: IEnumerable<ChartElement<SkiaSharpDrawingContext>>
Gets or sets the pointer down callback.
Type: EventCallback<PointerEventArgs>
Type: EventCallback<PointerEventArgs>
Gets or sets the pointer move callback.
Type: EventCallback<PointerEventArgs>
Type: EventCallback<PointerEventArgs>
Gets or sets the pointer up callback.
Type: EventCallback<PointerEventArgs>
Type: EventCallback<PointerEventArgs>
Events
Occurs before the chart is measured, this is the first step before the chart updates.
Handler definition: ChartEventHandler<SkiaSharpDrawingContext>
Handler definition: ChartEventHandler<SkiaSharpDrawingContext>
Occurs when the chart started an update, just when the drawing loop started.
Handler definition: ChartEventHandler<SkiaSharpDrawingContext>
Handler definition: ChartEventHandler<SkiaSharpDrawingContext>
Occurs when a chart update finished, just when the drawing loop finished.
Handler definition: ChartEventHandler<SkiaSharpDrawingContext>
Handler definition: ChartEventHandler<SkiaSharpDrawingContext>
Occurs when the pointer goes down over a chart point(s).
Handler definition: ChartPointsHandler
Handler definition: ChartPointsHandler
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<SkiaSharpDrawingContext>
Handler definition: VisualElementsHandler<SkiaSharpDrawingContext>
Methods
// Gets all the ChartPoint that contain the given point.
LvcPoint point, | // The given point. |
TooltipFindingStrategy strategy | // The finding strategy, default is Automatic. |
)