using UnityEditor; namespace XCharts { /// /// Editor class used to edit UI LineChart. /// [CustomEditor(typeof(LineChart), false)] public class LineChartEditor : CoordinateChartEditor { protected override void OnEnable() { base.OnEnable(); m_Target = (LineChart)target; } } }