ISeries
Interface

Assembly LiveChartsCore
Namespace LiveChartsCore

Summary:
Defines a chart series.

Implements:
Derived:
BarSeries<TModel, TVisual, TLabel, TDrawingContext>
CartesianSeries<TModel, TVisual, TLabel, TDrawingContext>
ChartSeries<TModel, TVisual, TLabel, TDrawingContext>
CoreBoxSeries<TModel, TVisual, TLabel, TMiniatureGeometry, TDrawingContext>
CoreColumnSeries<TModel, TVisual, TLabel, TDrawingContext, TErrorGeometry>
CoreFinancialSeries<TModel, TVisual, TLabel, TMiniatureGeometry, TDrawingContext>
CoreHeatSeries<TModel, TVisual, TLabel, TDrawingContext>
CoreLineSeries<TModel, TVisual, TLabel, TDrawingContext, TPathGeometry, TErrorGeometry>
CorePieSeries<TModel, TVisual, TLabel, TMiniatureGeometry, TDrawingContext>
CorePolarLineSeries<TModel, TVisual, TLabel, TDrawingContext, TPathGeometry, TLineGeometry>
CoreRowSeries<TModel, TVisual, TLabel, TDrawingContext, TErrorGeometry>
CoreScatterSeries<TModel, TVisual, TLabel, TDrawingContext, TErrorGeometry>
CoreStackedAreaSeries<TModel, TVisual, TLabel, TDrawingContext, TPathGeometry, TErrorGeometry>
CoreStackedColumnSeries<TModel, TVisual, TLabel, TDrawingContext, TErrorGeometry>
CoreStackedRowSeries<TModel, TVisual, TLabel, TDrawingContext, TErrorGeometry>
CoreStackedStepAreaSeries<TModel, TVisual, TLabel, TDrawingContext, TPathGeometry, TLineGeometry>
CoreStepLineSeries<TModel, TVisual, TLabel, TDrawingContext, TPathGeometry, TLineGeometry>
ISeries<TModel>
Series<TModel, TVisual, TLabel, TDrawingContext>
StrokeAndFillCartesianSeries<TModel, TVisual, TLabel, TDrawingContext>
IBarSeries<TDrawingContext>
IBoxSeries<TDrawingContext>
ICartesianSeries<TDrawingContext>
IChartSeries<TDrawingContext>
IFinancialSeries<TDrawingContext>
IHeatSeries<TDrawingContext>
ILineSeries<TDrawingContext>
IPieSeries<TDrawingContext>
IPolarLineSeries<TDrawingContext>
IPolarSeries<TDrawingContext>
IScatterSeries<TDrawingContext>
IStackedBarSeries<TDrawingContext>
IStepLineSeries<TDrawingContext>
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`1 or IChartLegend`1, 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`1 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>

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 array with the points used to generate the plot.
IChart chart// the chart
)
// Gets the ChartPoint instances which contain the , according to the chart's TooltipFindingStrategy property.
IChart chart, // the chart.
LvcPoint pointerPosition, // the pointer position.
TooltipFindingStrategy strategy// the strategy.
)
// 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*
)