HeatmapDiagram Class
A heatmap diagram.
Namespace: DevExpress.XtraCharts.Heatmap
Assembly: DevExpress.XtraCharts.v24.1.dll
NuGet Package: DevExpress.Charts
Declaration
[TypeConverter(typeof(LocalizableExpandableObjectTypeConverter))]
public class HeatmapDiagram
Related API Members
The following members return HeatmapDiagram objects:
Remarks
A diagram is the Heatmap Control’s area that is used to draw heatmap cells.
Example
The following example specifies the Heatmap Control’s diagram background and border colors:
using DevExpress.XtraCharts;
using DevExpress.XtraCharts.Heatmap;
using System.Drawing;
namespace HeatmapChartApp {
public partial class Form1 : Form {
public Form1() {
InitializeComponent();
//...
heatmap.Diagram.BorderVisible = true;
heatmap.Diagram.BorderColor = Color.Gray;
heatmap.Diagram.BackColor = Color.LightGray;
}
}
}
Inheritance
Object
HeatmapDiagram
See Also