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

SetLabel() public method

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