Files
XCharts/Editor/Series/PieEditor.cs
monitor1394 431cf7de74 v3.0.1
2022-06-16 08:14:02 +08:00

26 lines
755 B
C#

using XCharts.Runtime;
namespace XCharts.Editor
{
[SerieEditor(typeof(Pie))]
public class PieEditor : SerieEditor<Pie>
{
public override void OnCustomInspectorGUI()
{
PropertyField("m_RoseType");
PropertyField("m_Gap");
PropertyTwoFiled("m_Center");
PropertyTwoFiled("m_Radius");
PropertyField("m_AvoidLabelOverlap");
PropertyFiledMore(() =>
{
PropertyField("m_MinAngle");
PropertyField("m_RoundCap");
PropertyField("m_Ignore");
PropertyField("m_IgnoreValue");
});
PropertyField("m_ItemStyle");
PropertyField("m_Animation");
}
}
}