Blazor コントロール
Heatmap クラス
メンバ  使用例 

C1.Blazor.Chart アセンブリ > C1.Blazor.Chart 名前空間 : Heatmap クラス
さまざまな色を使用して 2D データ配列を表示するヒートマップ系列を表します。
オブジェクト モデル
Heatmap クラス
シンタックス
'宣言
 
Public Class Heatmap 
   Inherits Series
   Implements Microsoft.AspNetCore.Components.IComponent, Microsoft.AspNetCore.Components.IHandleAfterRender, Microsoft.AspNetCore.Components.IHandleEvent 
public class Heatmap : Series, Microsoft.AspNetCore.Components.IComponent, Microsoft.AspNetCore.Components.IHandleAfterRender, Microsoft.AspNetCore.Components.IHandleEvent  
使用例
次のコードは、ヒートマップ系列を作成し、それをチャートに追加します。
var hmap = new Heatmap();
hmap.ItemsSource = new double [,] { { 0, 0.5 }, {0.5, 1 }, { 1, 0.4 }, { 0.5, 1 } };
hmap.ColorScale = new GradientColorScale() { Min = 0, Max = 1, Colors = new List<Color> { Color.White, Color.Red } };
chart.Series.Add(hmap);
chart.AxisX.ItemsSource = new string[] {"Q1", "Q2", "Q3", "Q4" };
chart.AxisY.ItemsSource = new string[] { "Region 1", "Region 2" };
継承階層

System.Object
   Microsoft.AspNetCore.Components.ComponentBase
      C1.Chart.SeriesBase
         C1.Blazor.Chart.Series
            C1.Blazor.Chart.Heatmap

参照

Heatmap メンバ
C1.Blazor.Chart 名前空間