■ TChart 클래스에서 레전드의 커스텀 위치를 설정하는 방법을 보여준다.
▶ 예제 코드 (C#)
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 |
using Steema.TeeChart; #region 레전드 커스텀 위치 설정하기 - SetLegendCustomLocation(chart, x, y) /// <summary> /// 레전드 커스텀 위치 설정하기 /// </summary> /// <param name="chart">TChart 객체</param> /// <param name="x">X 좌표</param> /// <param name="y">Y 좌표</param> public void SetLegendCustomLocation(TChart chart, int x, int y) { chart.Legend.CustomPosition = true; chart.Legend.Left = x; chart.Legend.Top = y; } #endregion |
※ Legend.Alignment 속성과 함께 사용하지 않습니다.