Table of Contents

Class BOBChartSeries<TX, TY>

Namespace
BlazOrbit.Charts.Models
Assembly
BlazOrbit.Charts.dll

A named, typed sequence of data points rendered as a single visual series (a bar group, a line, an area). Multiple series share the same axes and legend.

public sealed class BOBChartSeries<TX, TY>

Type Parameters

TX

Type of the X-axis values.

TY

Type of the Y-axis values.

Inheritance
object
BOBChartSeries<TX, TY>

Constructors

BOBChartSeries()

public BOBChartSeries()

Properties

BorderWidth

Stroke width for line / area charts, in pixels.

public int BorderWidth { get; init; }

Property Value

int

Color

Optional explicit color for the series. When null the color is drawn from the active palette in declaration order.

public string? Color { get; init; }

Property Value

string

Fill

Whether the series renders filled (area chart) or stroked-only (line chart). Charts that ignore fills (bar) silently disregard.

public bool Fill { get; init; }

Property Value

bool

Label

Display name of the series. Used by the legend, tooltip and ARIA labels. Must be unique within a chart.

public string Label { get; init; }

Property Value

string

Points

The data points, in plot order.

public IEnumerable<BOBChartPoint<TX, TY>> Points { get; init; }

Property Value

IEnumerable<BOBChartPoint<TX, TY>>