■ TChart 클래스의 Graphics3D 속성을 사용해 클리핑 사각형을 설정하는 방법을 보여준다.
▶ 예제 코드 (C#)
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 |
using Steema.TeeChart; private TChart tChart; ... int left; int right; int top; int bottom; ... this.tChart.Graphics3D.ClipRectangle(left, top, right, bottom); |