mirror of
https://github.com/XCharts-Team/XCharts.git
synced 2026-05-16 13:30:10 +00:00
18 lines
378 B
C#
18 lines
378 B
C#
using UnityEditor;
|
|
|
|
namespace XCharts
|
|
{
|
|
/// <summary>
|
|
/// Editor class used to edit UI LineChart.
|
|
/// </summary>
|
|
|
|
[CustomEditor(typeof(LineChart), false)]
|
|
public class LineChartEditor : CoordinateChartEditor
|
|
{
|
|
protected override void OnEnable()
|
|
{
|
|
base.OnEnable();
|
|
m_Target = (LineChart)target;
|
|
}
|
|
}
|
|
} |