ISeries
Interface

Assembly LiveChartsCore
Namespace LiveChartsCore

Summary:
Defines a chart series.

Implements:
Derived:
BarSeries<TModel, TVisual, TLabel>
CartesianSeries<TModel, TVisual, TLabel>
CoreBoxSeries<TModel, TVisual, TLabel, TMiniatureGeometry>
CoreColumnSeries<TModel, TVisual, TLabel, TErrorGeometry>
CoreFinancialSeries<TModel, TVisual, TLabel, TMiniatureGeometry>
CoreHeatSeries<TModel, TVisual, TLabel>
CoreLineSeries<TModel, TVisual, TLabel, TPathGeometry, TErrorGeometry>
CorePieSeries<TModel, TVisual, TLabel, TMiniatureGeometry>
CorePolarLineSeries<TModel, TVisual, TLabel, TPathGeometry, TLineGeometry>
CoreRowSeries<TModel, TVisual, TLabel, TErrorGeometry>
CoreScatterSeries<TModel, TVisual, TLabel, TErrorGeometry>
CoreStackedAreaSeries<TModel, TVisual, TLabel, TPathGeometry, TErrorGeometry>
CoreStackedColumnSeries<TModel, TVisual, TLabel, TErrorGeometry>
CoreStackedRowSeries<TModel, TVisual, TLabel, TErrorGeometry>
CoreStackedStepAreaSeries<TModel, TVisual, TLabel, TPathGeometry, TLineGeometry>
CoreStepLineSeries<TModel, TVisual, TLabel, TPathGeometry, TLineGeometry>
ISeries<TModel>
Series<TModel, TVisual, TLabel>
StrokeAndFillCartesianSeries<TModel, TVisual, TLabel>
BoxSeries<TModel>
BoxSeries<TModel, TVisual>
BoxSeries<TModel, TVisual, TLabel>
CandlesticksSeries<TModel, TVisual>
CandlesticksSeries<TModel, TVisual, TLabel>
ColumnSeries<TModel>
ColumnSeries<TModel, TVisual>
ColumnSeries<TModel, TVisual, TLabel>
HeatSeries<TModel>
HeatSeries<TModel, TVisual>
HeatSeries<TModel, TVisual, TLabel>
LineSeries<TModel>
LineSeries<TModel, TVisual>
LineSeries<TModel, TVisual, TLabel>
PieSeries<TModel>
PieSeries<TModel, TVisual>
PieSeries<TModel, TVisual, TLabel>
PolarLineSeries<TModel>
PolarLineSeries<TModel, TVisual>
PolarLineSeries<TModel, TVisual, TLabel>
RowSeries<TModel>
RowSeries<TModel, TVisual>
RowSeries<TModel, TVisual, TLabel>
ScatterSeries<TModel>
ScatterSeries<TModel, TVisual>
ScatterSeries<TModel, TVisual, TLabel>
StackedAreaSeries<TModel, TVisual>
StackedAreaSeries<TModel, TVisual, TLabel>
StackedColumnSeries<TModel, TVisual>
StackedColumnSeries<TModel, TVisual, TLabel>
StackedRowSeries<TModel, TVisual>
StackedRowSeries<TModel, TVisual, TLabel>
StackedStepAreaSeries<TModel, TVisual>
StackedStepAreaSeries<TModel, TVisual, TLabel>
StepLineSeries<TModel>
StepLineSeries<TModel, TVisual>
StepLineSeries<TModel, TVisual, TLabel>

Properties

Gets or sets a series unique identifier, the library handles this id automatically.
Type: Int32
Gets the properties of the series.
Type: SeriesProperties
Gets whether the series requires to find the closest point when the pointer goes down.
Type: Boolean
Gets or sets the name of the series, the name is normally used by IChartTooltip or IChartLegend, the default value is set automatically by the library.
Type: String
Gets or sets the values.
Type: IEnumerable
Gets or sets a value indicating whether this instance will show up in tool tips when the pointer is over a point. default value is true.
Type: Boolean
Gets or sets a value indicating whether this instance will show up in legends. default value is true.
Type: Boolean
Gets or sets the size of the legend shape.
Type: Double
Gets or sets the data padding, the distance from the edge of the chart to where the series is drawn, both coordinates (X and Y) from 0 to 1, where 0 is nothing and 1 is the axis tick (the separation between every label).
Type: LvcPoint
Gets or sets the z index position.
Type: Int32
Gets or sets the value where the direction of the axis changes, by default is 0.
Type: Double
Gets or sets the series geometry svg, this property requires the series visual to be an IVariableSvgPath instance.
Type: String
Gets or sets the animations speed, if this property is null, the AnimationsSpeed property will be used.
Type: Nullable<TimeSpan>
Gets or sets the easing function to animate the series, if this property is null, the EasingFunction property will be used.
Type: Func<Single, Single>
Gets or sets the data labels paint.
Type: Paint
Gets or sets the size of the data labels.
Type: Double
Gets or sets the data labels rotation in degrees.
Type: Double
Gets or sets the data labels padding.
Type: Padding
Gets or sets the max width of the data labels.
Type: Double

Methods

// Gets the tool tip text for a give chart point.
ChartPoint point// The chart point.
)
// Gets the tool tip text for a give chart point.
ChartPoint point// The chart point.
)
// Gets the data label content for a given chart point.
ChartPoint point// The chart point.
)
// Gets a ChartPoint IEnumerable with the points used to generate the plot.
Chart chart// the chart
)
// Gets the ChartPoint instances which contain the , according to the chart's FindingStrategy property.
Chart chart, // the chart.
LvcPoint pointerPosition, // the pointer position.
FindingStrategy strategy, // the strategy.
FindPointFor findPointFor// the trigger that fired the search.
)
// Called when the pointer enters a chart point.
ChartPoint point//
)
// Called when the pointer leaves a chart point.
ChartPoint point//
)
// Clears the visuals in the cache and re-starts animations.
// Deletes the series from the user interface.
IChartView chart// *summary not found*
)
// Gets the stack group, normally used internally to handled the stacked series.
// Return the visual element shown in tooltips and legends, this is an old method and will be replaced by ChartPoint).
ChartPoint point, // The point.
Int32 zindex// The zindex.
)
// Returns a geometry that represents the series in a tooltip or legend.
ChartPoint point// The target point.
)
// Called when the pointer goes down on a data point or points.
IChartView chart, // The chart.
IEnumerable<ChartPoint> points, // The found points.
LvcPoint pointerLocation// The pointer location.
)