Table of Contents

Class ChartSeries

Namespace
MudBlazor
Assembly
MudBlazor.dll

Represents a set of data to display in a MudChart.

public class ChartSeries
Inheritance
ChartSeries
Inherited Members
Extension Methods

Remarks

This class is typically used to display multiple sets of values in a line, bar, or stacked bar chart.

Constructors

ChartSeries()

public ChartSeries()

Properties

Data

The values to display.

public double[] Data { get; set; }

Property Value

double[]

Remarks

The number of values in this array is typically equal to the number of values in the MudChartXAxisLabels property.

Index

The position of this series within a list.

public int Index { get; set; }

Property Value

int

Name

The legend label for this series.

public string Name { get; set; }

Property Value

string

Visible

Displays this series in the chart.

public bool Visible { get; set; }

Property Value

bool