17 lines
393 B
C#
17 lines
393 B
C#
using XCharts.Runtime;
|
|
|
|
namespace XCharts.Editor
|
|
{
|
|
[SerieEditor(typeof(Heatmap))]
|
|
public class HeatmapEditor : SerieEditor<Heatmap>
|
|
{
|
|
public override void OnCustomInspectorGUI()
|
|
{
|
|
PropertyField("m_Ignore");
|
|
PropertyField("m_IgnoreValue");
|
|
|
|
PropertyField("m_ItemStyle");
|
|
PropertyField("m_Animation");
|
|
}
|
|
}
|
|
} |