Table of Contents

Class BOBChartBrushArgs<TX>

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

Event args fired when the user finishes a brush drag on the chart's plot area. MinX / MaxX bracket the selected range in the original X-axis domain (a System.DateTime when TX is temporal, an int when numeric, etc.).

public sealed class BOBChartBrushArgs<TX>

Type Parameters

TX

X-axis domain type the chart was bound to.

Inheritance
object
BOBChartBrushArgs<TX>

Constructors

BOBChartBrushArgs()

public BOBChartBrushArgs()

Properties

MaxX

Upper bound of the selected range, inclusive.

public TX MaxX { get; init; }

Property Value

TX

MinX

Lower bound of the selected range, inclusive.

public TX MinX { get; init; }

Property Value

TX