Epigene.UI.UIChartPie.GetValue C# (CSharp) Метод

GetValue() публичный Метод

public GetValue ( int index ) : float
index int
Результат float
		public float GetValue(int index)
		{
			if (index < datas.Count)
			{
				Dictionary<string, object> data = datas[index];
				float value = (float)data["value"];
				return value;
			}
			return -1f;
		}