Skip to main content

Class LineChart

An X/Y Line chart

Assembly: MicroLayout.dll
View Source
Declaration
public class LineChart : ChartControl, IThemedControl, IControl

Inheritance: System.Object -> Meadow.Foundation.Graphics.MicroLayout.Control

Implements:
Meadow.Foundation.Graphics.MicroLayout.IThemedControl

Properties

AlwaysShowYOrigin

When true, Y-value origin (zero) is always displayed, otherwise the Y axis is scaled based on the data range.

View Source
Declaration
public bool AlwaysShowYOrigin { get; set; }

ShowYAxisLabels

When true, Y-axis labels will be shown

View Source
Declaration
public bool ShowYAxisLabels { get; set; }

Series

The collection of data series to plot

View Source
Declaration
public LineChartSeriesCollection Series { get; set; }

Methods

OnDraw(MicroGraphics)

Performs the actual drawing of the control on the specified Meadow.Foundation.Graphics.MicroGraphics surface. This method must be implemented in derived classes.

View Source
Declaration
protected override void OnDraw(MicroGraphics graphics)
Parameters
TypeNameDescription
Meadow.Foundation.Graphics.MicroGraphics surface to draw the control on.

Implements