RowSeries<TModel, TVisual, TLabel>
Class

Assembly LiveChartsCore.SkiaSharpView
Namespace LiveChartsCore.SkiaSharpView

Summary:
Defines a row series in the user interface.

Type parameters:
TModel The type of the points, you can use any type, the library already knows how to handle the most common numeric types, to use a custom type, you must register the type globally (ChartPoint})) or at the series level (Mapping).
TVisual The type of the geometry of every point of the series.
TLabel The type of the data label of every point.
Inheritance:
Object =>
ChartElement<SkiaSharpDrawingContext> =>
Series<TModel, TVisual, TLabel, SkiaSharpDrawingContext> =>
ChartSeries<TModel, TVisual, TLabel, SkiaSharpDrawingContext> =>
CartesianSeries<TModel, TVisual, TLabel, SkiaSharpDrawingContext> =>
StrokeAndFillCartesianSeries<TModel, TVisual, TLabel, SkiaSharpDrawingContext> =>
BarSeries<TModel, TVisual, TLabel, SkiaSharpDrawingContext> =>
RowSeries<TModel, TVisual, TLabel, SkiaSharpDrawingContext, LineGeometry> =>
RowSeries<TModel, TVisual, TLabel>
Implements:
ISeries<TModel>
Derived:
RowSeries<TModel>
RowSeries<TModel, TVisual>

Properties

Gets or sets the padding for each group of bars that share the same secondary coordinate.
Type: Double
Gets or sets the padding for each bar in the series.
Type: Double
Gets or sets the maximum width of the bar.
Type: Double
Gets or sets a value indicating whether the bar position respects the other bars that share the same SecondaryValue.
Type: Boolean
Rx
Gets or sets the rx, the radius used in the x axis to round the corners of each column in pixels.
Type: Double
Ry
Gets or sets the ry, the radius used in the y axis to round the corners of each column in pixels.
Type: Double
Gets or sets the error paint.
Type: IPaint<SkiaSharpDrawingContext>
Gets or sets the stroke.
Type: IPaint<SkiaSharpDrawingContext>
Gets or sets the fill.
Type: IPaint<SkiaSharpDrawingContext>
Gets or sets the axis index where the series is scaled in the X plane, the index must exist in the XAxes collection.
Type: Int32
Gets or sets the axis index where the series is scaled in the Y plane, the index must exist in the YAxes collection.
Type: Int32
Gets or sets the data labels position.
Type: DataLabelsPosition
Gets or sets the data labels translate transform, the property is of type LvcPoint, where the X property is in normalized units (from 0 to 1), where 1 is the width of the label and the Y property is also in normalized units (from 0 to 1), where 1 is the height of the label.
Type: Nullable<LvcPoint>
Gets or sets the tool tip label formatter for the X axis, this function will build the label when a point in this series is shown inside a tool tip.
Type: Func<ChartPoint<TModel, TVisual, TLabel>, String>
Gets or sets the tool tip label formatter for the Y axis, this function will build the label when a point in this series is shown inside a tool tip.
Type: Func<ChartPoint<TModel, TVisual, TLabel>, String>
Gets or sets the clipping mode, clipping restricts the series and labels for being drawn outside of the chart area (DrawMargin), default is XY, and means that anything outside the chart bounds will be ignored.
Type: ClipMode
Gets or sets the data labels paint.
Type: IPaint<SkiaSharpDrawingContext>
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
Gets the properties of the series.
Type: SeriesProperties
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<TModel>
Gets or sets the value where the direction of the axis changes, by default is 0.
Type: Double
Gets or sets the mapping.
Type: Action<TModel, ChartPoint>
Gets or sets the series geometry svg, this property requires the series visual to be an ISvgPath`1 instance.
Type: String
Gets or sets the z index position.
Type: Int32
Gets or sets the tool tip label formatter, this function will build the label when a point in this series is shown inside a tool tip.
Type: Func<ChartPoint<TModel, TVisual, TLabel>, String>
Gets or sets the data label formatter, this function will build the label when a point in this series is shown as data label.
Type: Func<ChartPoint<TModel, TVisual, TLabel>, String>
Gets or sets a value indicating whether this instance is visible.
Type: Boolean
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 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 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 the data factory.
Type: DataFactory<TModel, SkiaSharpDrawingContext>
Called when a point is measured.
Type: Action<ChartPoint<TModel, TVisual, TLabel>>
Gets or sets the size of the legend shape.
Type: Double
Gets or sets the size of the legend shape.
Type: Double
Gets the paint schedule, normally handled internally to display tool tips and legends.
Type: Sketch<SkiaSharpDrawingContext>
Tag
Gets or sets the object that contains data about the control.
Type: Object

Events

Occurs when an instance of ChartPoint is measured.
Handler definition: Action<ChartPoint<TModel, TVisual, TLabel>>
Occurs when an instance of ChartPoint is created.
Handler definition: Action<ChartPoint<TModel, TVisual, TLabel>>
Occurs when the pointer goes down over a chart point(s).
Handler definition: ChartPointsHandler<TModel, TVisual, TLabel>
Occurs when the pointer is over a chart point.
Handler definition: ChartPointHandler<TModel, TVisual, TLabel>
Occurs when the pointer left a chart point.
Handler definition: ChartPointHandler<TModel, TVisual, TLabel>
Occurs when the pointer is over a chart point.
Handler definition: ChartPointHandler<TModel, TVisual, TLabel>
Occurs when the pointer left a chart point.
Handler definition: ChartPointHandler<TModel, TVisual, TLabel>
Occurs when the pointer goes down over a chart point, if there are multiple points, the closest one will be selected.
Handler definition: ChartPointHandler<TModel, TVisual, TLabel>
Occurs when the series IsVisible property changes.
Handler definition: Action<ISeries>
Occurs when a property value changes.
Handler definition: PropertyChangedEventHandler

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.
)
// Deletes the series from the user interface.
IChartView chart// *summary not found*
)
// Gets the stack group, normally used internally to handled the stacked series.
// Clears the visuals in the cache and re-starts animations.
// Gets the data label content for a given chart point.
ChartPoint point// The chart point.
)
// Converts a chart to a strong-typed version of it.
ChartPoint point//
)