Class
FunnelRenderer

Definition

Constructors

FunnelRenderer(FunnelArea)

Declaration

cs-api-definition
public FunnelRenderer(FunnelArea area)

Parameters

area

FunnelArea

Properties

Area

Declaration

cs-api-definition
public FunnelArea Area { get; }

Property Value

FunnelArea

DrawParts

Declaration

cs-api-definition
protected List<IDrawPart> DrawParts { get; }

Property Value

List<IDrawPart>

Methods

Draw(object)

Draws the chart using the specified rendering context.

Declaration

cs-api-definition
public override void Draw(object context)

Parameters

context

object

The graphics context used for rendering operations.

Overrides ChartRenderer.Draw(object)

HitTest(int, int)

Performs hit testing to find the data point at the specified coordinates.

Declaration

cs-api-definition
public override DataPoint HitTest(int x, int y)

Parameters

x

int

The x-coordinate for hit testing.

y

int

The y-coordinate for hit testing.

Returns

DataPoint

The DataPoint at the specified coordinates, or null if no data point is found.

Overrides ChartRenderer.HitTest(int, int)

Initialize()

Initializes the renderer by setting up smart labels controller and calculating label positions if available.

Declaration

cs-api-definition
protected override void Initialize()

Overrides ChartRenderer.Initialize()