ISeries
Interface
Assembly LiveChartsCore
Namespace LiveChartsCore
Summary:
Defines a chart series.
Derived:
Properties
Gets the properties of the series.
Type: SeriesProperties
Type: SeriesProperties
Gets whether the series requires to find the closest point when the pointer goes down.
Type: Boolean
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
Type: String
Gets or sets the values.
Type: IEnumerable
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
Type: Boolean
Gets or sets a value indicating whether this instance will show up in legends.
default value is true.
Type: Boolean
Type: Boolean
Gets or sets the size of the legend shape.
Type: Double
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
Type: LvcPoint
Gets or sets the series geometry svg, this property requires the series visual to be
an IVariableSvgPath instance.
Type: String
Type: String
Gets or sets the animations speed, if this property is null, the
AnimationsSpeed property will be used.
Type: Nullable<TimeSpan>
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>
Type: Func<Single, Single>
Gets or sets the data labels paint.
Type: Paint
Type: Paint
Gets or sets the size of the data labels.
Type: Double
Type: Double
Gets or sets the data labels rotation in degrees.
Type: Double
Type: Double
Gets or sets the data labels padding.
Type: Padding
Type: Padding
Gets or sets the max width of the data labels.
Type: Double
Type: Double
Methods
// 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. |
)
// Clears the visuals in the cache and re-starts animations.
// 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. |
)