Açıklama Yok
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.

EndLabelStyle.cs 376B

1234567891011121314151617
  1. using System;
  2. using UnityEngine;
  3. namespace XCharts.Runtime
  4. {
  5. [System.Serializable]
  6. public class EndLabelStyle : LabelStyle
  7. {
  8. public EndLabelStyle()
  9. {
  10. m_Offset = new Vector3(5, 0, 0);
  11. m_TextStyle.alignment = TextAnchor.MiddleLeft;
  12. m_NumericFormatter = "f0";
  13. m_Formatter = "{a}:{c}";
  14. }
  15. }
  16. }