mirror of
https://github.com/XCharts-Team/XCharts.git
synced 2026-05-16 13:30:10 +00:00
17 lines
478 B
C#
17 lines
478 B
C#
using XCharts.Runtime;
|
|
|
|
namespace XCharts.Editor
|
|
{
|
|
[SerieEditor(typeof(SimplifiedCandlestick))]
|
|
public class SimplifiedCandlestickEditor : SerieEditor<SimplifiedCandlestick>
|
|
{
|
|
public override void OnCustomInspectorGUI()
|
|
{
|
|
PropertyField("m_XAxisIndex");
|
|
PropertyField("m_YAxisIndex");
|
|
PropertyField("m_BarWidth");
|
|
PropertyField("m_ItemStyle");
|
|
PropertyField("m_Animation");
|
|
}
|
|
}
|
|
} |