A control used to draw heatmap charts.
Namespace: MindFusion.Charting.WinForms
Assembly: MindFusion.Charting.WinForms
SyntaxC#
Copy Code
|
|---|
public class HeatmapChart : BiaxialChart |
Visual Basic
Copy Code
|
|---|
Public Class HeatmapChart |
RemarksThe 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 HierarchySystem.Object![]()
System.MarshalByRefObject![]()
System.ComponentModel.Component![]()
System.Windows.Forms.Control![]()
MindFusion.Charting.WinForms.Dashboard
MindFusion.Charting.WinForms.Chart
MindFusion.Charting.WinForms.BiaxialChart
MindFusion.Charting.WinForms.HeatmapChart
See Also