mirror of
https://github.com/XCharts-Team/XCharts.git
synced 2026-05-16 21:40:41 +00:00
21 lines
549 B
C#
21 lines
549 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_Smooth");
|
|
|
|
PropertyField("m_Symbol");
|
|
PropertyField("m_LineStyle");
|
|
PropertyField("m_ItemStyle");
|
|
PropertyField("m_Animation");
|
|
}
|
|
}
|
|
} |