Table of Contents

Class BOBChartOptions

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

Aggregate configuration object that bundles together the most common chart-wide options. Every field is also surfaced as a top-level parameter on the chart components themselves; this class exists for callers who prefer to compose a single options bag and reuse it across charts.

public sealed class BOBChartOptions
Inheritance
object
BOBChartOptions

Constructors

BOBChartOptions()

public BOBChartOptions()

Properties

Animated

Whether transitions on data updates animate. Set to false to honour prefers-reduced-motion globally.

public bool Animated { get; init; }

Property Value

bool

AnimationDuration

Animation duration in milliseconds. Default 400 ms.

public int AnimationDuration { get; init; }

Property Value

int

ShowGrid

Whether axis gridlines are visible (Bar / Line / Area only).

public bool ShowGrid { get; init; }

Property Value

bool

ShowTooltips

Whether tooltips appear on hover. Defaults to true.

public bool ShowTooltips { get; init; }

Property Value

bool