Files
XCharts/Runtime/Component/Label/EndLabelStyle.cs

17 lines
376 B
C#
Raw Normal View History

2021-12-28 08:18:24 +08:00
using System;
using UnityEngine;
2022-02-19 22:37:57 +08:00
namespace XCharts.Runtime
2021-12-28 08:18:24 +08:00
{
[System.Serializable]
public class EndLabelStyle : LabelStyle
{
public EndLabelStyle()
{
m_Offset = new Vector3(5, 0, 0);
m_TextStyle.alignment = TextAnchor.MiddleLeft;
m_NumericFormatter = "f0";
m_Formatter = "{a}:{c}";
}
2021-12-28 08:18:24 +08:00
}
}