Nenhuma descrição
Você não pode selecionar mais de 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.

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. }