반응형
TeeChart 기초
1. 참조에 dll 추가
2. 도구상자에 dll 추가해서 컨트롤 추가
3. 도구상자에 이런거 생김
1. 참조에 dll 추가
2. 도구상자에 dll 추가해서 컨트롤 추가
3. 도구상자에 이런거 생김
4. TChart 폼에다가 만듬
5. TChart 속성에서 Series에 원그래프 1개 추가
6. 디자이너에선 그냥 랜덤값으로 보여주고 있음. 실행시키면 안보임
tChart1.Series[0].Add(300, "aa", Color.DarkRed);
tChart1.Series[0].Add(530, "bb", Color.DarkOrange);
tChart1.Series[0].Add(490, "cc", Color.Yellow);
tChart1.Series[0].Add(100, "dd", Color.SeaGreen);
tChart1.Series[0].Add(220, "ee", Color.SkyBlue);
tChart1.Series[0].Add(400, "ff", Color.RoyalBlue);
tChart1.Series[0].Add(360, "gg", Color.Silver);
대충 머 알아서 이렇게 넣으면.
이렇게 된다.
반응형
'▩▩ 프로그래밍 ▩▩ > C#' 카테고리의 다른 글
[C#] DataGridView DoubleBuffered (3) | 2015.08.12 |
---|---|
[C#] img --> byte[], byte[] --> img (0) | 2014.03.13 |
[C#] string --> int (0) | 2014.01.17 |
[C#] DataGridView 셀 가운데정렬 (0) | 2013.11.13 |
[GMap] Custom Marker Color - 원하는 칼라로 변경 (0) | 2013.11.06 |
[C#] MessageBox 선택 (0) | 2013.11.05 |
[C#] 8 bit color(Hexadecimal code) --> color (0) | 2013.11.05 |
[C#] ToolStrip의 ComboBox에서 SelectionChangeCommitted 쓰고싶을 때 (0) | 2013.10.28 |