暫無描述
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.

HeatmapEditor.cs 738B

12345678910111213141516171819202122232425262728
  1. using XCharts.Runtime;
  2. namespace XCharts.Editor
  3. {
  4. [SerieEditor(typeof(Heatmap))]
  5. public class HeatmapEditor : SerieEditor<Heatmap>
  6. {
  7. public override void OnCustomInspectorGUI()
  8. {
  9. if (serie.IsUseCoord<PolarCoord>())
  10. {
  11. PropertyField("m_PolarIndex");
  12. }
  13. else
  14. {
  15. PropertyField("m_XAxisIndex");
  16. PropertyField("m_YAxisIndex");
  17. }
  18. PropertyField("m_HeatmapType");
  19. PropertyField("m_Ignore");
  20. PropertyField("m_IgnoreValue");
  21. PropertyField("m_Symbol");
  22. PropertyField("m_ItemStyle");
  23. PropertyField("m_Animation");
  24. }
  25. }
  26. }