ICartesianChartView
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.

Implements:
Derived:

Properties

Gets the core.
Type: CartesianChartEngine
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<CoreSection>
Gets or sets the series to plot in the user interface.
Type: IEnumerable<ISeries>
Gets or sets the draw margin frame.
Type: CoreDrawMarginFrame
Gets or sets the zoom mode.
Type: ZoomAndPanMode
Gets or sets the finding strategy.
Type: FindingStrategy
Gets or sets the zooming speed from 0 to 1, where 0 is the slowest and 1 the fastest.
Type: Double
Matches the axes screen data ratio, this method forces the x and y axes to use the same scale, this means that both axes will have the same number of pixels per data unit.
Type: Boolean

Methods

// 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.
)