Няма описание
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

CandlestickEditor.cs 818B

1234567891011121314151617181920212223242526
  1. using XCharts.Runtime;
  2. namespace XCharts.Editor
  3. {
  4. [SerieEditor(typeof(Candlestick))]
  5. public class CandlestickEditor : SerieEditor<Candlestick>
  6. {
  7. public override void OnCustomInspectorGUI()
  8. {
  9. PropertyField("m_ColorBy");
  10. PropertyField("m_XAxisIndex");
  11. PropertyField("m_YAxisIndex");
  12. PropertyFieldLimitMin("m_MinShow", 0);
  13. PropertyFieldLimitMin("m_MaxShow", 0);
  14. PropertyFieldLimitMin("m_MaxCache", 0);
  15. PropertyField("m_BarWidth");
  16. PropertyField("m_Clip");
  17. PropertyField("m_ShowAsPositiveNumber");
  18. PropertyField("m_Large");
  19. PropertyField("m_LargeThreshold");
  20. PropertyField("m_ItemStyle");
  21. PropertyField("m_Animation");
  22. }
  23. }
  24. }