Files
ZHGD_Web/SelfPackages/XCharts/Editor/Series/RadarEditor.cs
2025-07-13 23:16:20 +08:00

22 lines
590 B
C#

using XCharts.Runtime;
namespace XCharts.Editor
{
[SerieEditor(typeof(Radar))]
public class RadarEditor : SerieEditor<Radar>
{
public override void OnCustomInspectorGUI()
{
PropertyField("m_ColorBy");
PropertyField("m_RadarType");
PropertyField("m_RadarIndex");
PropertyField("m_MaxCache");
PropertyField("m_Smooth");
PropertyField("m_Symbol");
PropertyField("m_LineStyle");
PropertyField("m_ItemStyle");
PropertyField("m_Animation");
}
}
}