Epigene.UI.UIChartPie.SetValue C# (CSharp) Method

SetValue() public method

public SetValue ( int index, float value ) : void
index int
value float
return void
		public void SetValue(int index, float value)
		{
			if (index < datas.Count)
			{
				Dictionary<string, object> data = datas[index];
				data["value"] = value;
				datas[index] = data;
			}
		}