ICartesianChartView<TDrawingContext>
Interface

Assembly LiveChartsCore
Namespace LiveChartsCore.Kernel.Sketches

Summary:
Defines a Cartesian chart view, this view is able to host one or many series in a Cartesian coordinate system.

Type parameters:
TDrawingContext The type of the drawing context.
Implements:
IChartView<TDrawingContext>
Derived:

Properties

Gets the core.
Type: CartesianChart<TDrawingContext>
Gets or sets the x axes.
Type: IEnumerable<ICartesianAxis>
Gets or sets the y axes.
Type: IEnumerable<ICartesianAxis>
Gets or sets the sections.
Type: IEnumerable<Section<TDrawingContext>>
Gets or sets the series to plot in the user interface.
Type: IEnumerable<ISeries>
Gets or sets the draw margin frame.
Type: DrawMarginFrame<TDrawingContext>
Gets or sets the zoom mode.
Type: ZoomAndPanMode
Gets or sets the tool tip finding strategy.
Type: TooltipFindingStrategy
Gets or sets the zooming speed from 0 to 1, where 0 is the slowest and 1 the fastest.
Type: Double

Methods

// Scales a UI point to the chart values scale.
LvcPoint point, // The point.
Int32 xAxisIndex, // Index of the x axis.
Int32 yAxisIndex// Index of the y axis.
)
// Scales a point in pixels to the chart data scale.
LvcPointD point, // The point.
Int32 xAxisIndex, // Index of the x axis.
Int32 yAxisIndex// Index of the y axis.
)
// Scales a point in the chart data scale to pixels.
LvcPointD point, // The point.
Int32 xAxisIndex, // Index of the x axis.
Int32 yAxisIndex// Index of the y axis.
)