C# Class LiveCharts.Charts.ChartCore

Mostra file Open project: beto-rodriguez/Live-Charts Class Usage Examples

Public Methods

Method Description
CalculateComponentsAndMargin ( ) : void

Calculates the components and margin.

ClearZoom ( ) : void

Clears the zoom.

Drag ( CorePoint delta ) : void

Drags the specified delta.

PlaceLegend ( CoreRectangle drawMargin ) : CoreRectangle

Places the legend.

PrepareAxes ( ) : void

Prepares the axes.

RunSpecializedChartComponents ( ) : void

Runs the specialized chart components.

ZoomIn ( CorePoint pivot ) : void

Zooms the in.

ZoomOut ( CorePoint pivot ) : void

Zooms the out.

Protected Methods

Method Description
ChartCore ( IChartView view, ChartUpdater updater ) : System

Initializes a new instance of the ChartCore class.

StackPoints ( IEnumerable stackables, AxisOrientation stackAt, int stackIndex, StackMode mode = StackMode.Values ) : void

Stacks the points.

Private Methods

Method Description
ChartCore ( ) : System

Initializes the ChartCore class.

Method Details

CalculateComponentsAndMargin() public method

Calculates the components and margin.
public CalculateComponentsAndMargin ( ) : void
return void

ChartCore() protected method

Initializes a new instance of the ChartCore class.
protected ChartCore ( IChartView view, ChartUpdater updater ) : System
view IChartView The view.
updater ChartUpdater The updater.
return System

ClearZoom() public method

Clears the zoom.
public ClearZoom ( ) : void
return void

Drag() public method

Drags the specified delta.
public Drag ( CorePoint delta ) : void
delta LiveCharts.Dtos.CorePoint The delta.
return void

PlaceLegend() public method

Places the legend.
public PlaceLegend ( CoreRectangle drawMargin ) : CoreRectangle
drawMargin LiveCharts.Dtos.CoreRectangle The draw margin.
return LiveCharts.Dtos.CoreRectangle

PrepareAxes() public method

Prepares the axes.
public PrepareAxes ( ) : void
return void

RunSpecializedChartComponents() public method

Runs the specialized chart components.
public RunSpecializedChartComponents ( ) : void
return void

StackPoints() protected method

Stacks the points.
protected StackPoints ( IEnumerable stackables, AxisOrientation stackAt, int stackIndex, StackMode mode = StackMode.Values ) : void
stackables IEnumerable The stackables.
stackAt AxisOrientation The stack at.
stackIndex int Index of the stack.
mode StackMode The mode.
return void

ZoomIn() public method

Zooms the in.
public ZoomIn ( CorePoint pivot ) : void
pivot LiveCharts.Dtos.CorePoint The pivot.
return void

ZoomOut() public method

Zooms the out.
public ZoomOut ( CorePoint pivot ) : void
pivot LiveCharts.Dtos.CorePoint The pivot.
return void