Search
HeatmapRenderer Class
Remarks See Also
 






A SeriesRenderer that draws a heatmap representing data items in its containing plot.

Namespace: MindFusion.Charting
Assembly: MindFusion.Charting

 Syntax

C#  Copy Code

public class HeatmapRenderer : Renderer2D

Visual Basic  Copy Code

Public Class HeatmapRenderer
    Inherits Renderer2D

 Remarks

The heatmap accumulates intensity values and maps them (scaled to MaxIntensity) to the colors and positions listed in Colors gradient object. This class expects a series of at least three dimensions, where first and second values specify coordinates, and third one specifies intensity. Optional fourth dimension can return radius value per data point; if not provided, the control applies the DefaultRadius property value. The convenience HeatmapSeries class implements such 4-dimensional series by storing values in HeatmapPoint objects.

 Inheritance Hierarchy

System.Object
    MindFusion.Charting.SeriesRenderer
        MindFusion.Charting.Renderer2D
            MindFusion.Charting.HeatmapRenderer

 See Also