Search
FunnelRenderer.ProcessSegment Delegate
See Also
 






Defines the signature of delegates called to process funnel segments.

Namespace: MindFusion.Charting
Assembly: MindFusion.Charting

 Syntax

C#  Copy Code

protected delegate void FunnelRenderer.ProcessSegment (
    int dataIndex,
    List<Point> poly
)

Visual Basic  Copy Code

Protected Delegate Sub FunnelRenderer.ProcessSegment( _
    dataIndex As Integer, _
    poly As List(Of Point) _
)

 Parameters

dataIndex

An integer index of data item in Series.

poly

The polygon of the segment.

 See Also