mirror of
https://github.com/XCharts-Team/XCharts.git
synced 2026-05-22 08:50:10 +00:00
26 lines
832 B
C#
26 lines
832 B
C#
/************************************************/
|
|
/* */
|
|
/* Copyright (c) 2018 - 2021 monitor1394 */
|
|
/* https://github.com/monitor1394 */
|
|
/* */
|
|
/************************************************/
|
|
|
|
namespace XCharts
|
|
{
|
|
[SerieEditor(typeof(Heatmap))]
|
|
public class HeatmapEditor : SerieEditor<Heatmap>
|
|
{
|
|
public override void OnCustomInspectorGUI()
|
|
{
|
|
PropertyField("m_Ignore");
|
|
PropertyField("m_IgnoreValue");
|
|
|
|
PropertyField("m_ItemStyle");
|
|
PropertyField("m_IconStyle");
|
|
PropertyField("m_Label");
|
|
PropertyField("m_LabelLine");
|
|
PropertyField("m_Emphasis");
|
|
PropertyField("m_Animation");
|
|
}
|
|
}
|
|
} |