■ BrushEditor 클래스의 Edit 정적 메소드를 사용해 브러시 속성을 편집하는 방법을 보여준다.
▶ 예제 코드 (C#)
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 |
using Steema.TeeChart; using Steema.TeeChart.Editors; using Steema.TeeChart.Tools; private TChart tChart; ... GridBand gridBand = new GridBand(this.tChart.Chart); ... BrushEditor.Edit(gridBand.Band1, true); this.tChart.Invalidate(); |