Table of Contents

Interface IChartSeriesOverlay

Namespace
Radzen.Blazor
Assembly
Radzen.Blazor.dll

Interface for chart overlays

public interface IChartSeriesOverlay

Properties

Visible

Gets overlay visibility state

bool Visible { get; }

Property Value

bool

Methods

Contains(double, double, int)

Hit test

bool Contains(double mouseX, double mouseY, int tolerance)

Parameters

mouseX double
mouseY double
tolerance int

Returns

bool

Render(ScaleBase, ScaleBase)

Render overlay

RenderFragment Render(ScaleBase categoryScale, ScaleBase valueScale)

Parameters

categoryScale ScaleBase
valueScale ScaleBase

Returns

RenderFragment

RenderFragment

RenderTooltip(double, double, double, double)

Renders tooltip

RenderFragment RenderTooltip(double mouseX, double mouseY, double marginLeft, double marginTop)

Parameters

mouseX double
mouseY double
marginLeft double
marginTop double

Returns

RenderFragment