위 그림 속 2번째 Graph의 Legend에 "Series 1"이라는 명명하지 않은 Series가 입력되어 있다.
이를 지우기 위해서는 Graph를 plot하기 전에 Series.Clear()를 아래 코드와 같이 해주면 된다.
그러면, 그림 속 1번째 Graph와 같이 Legend가 나온다.
chartgraphname.Series.Clear();
chartgraphname에는 명명한 graph의 이름을 기입하면 된다.
'둘 > [ C# ]' 카테고리의 다른 글
[C#] csv load using DataTable (0) | 2022.06.03 |
---|---|
[C#] Pass Listbox items from Main Form to Sub Form (0) | 2022.06.01 |
[C#] Create Dictionary<string, List<string>> (0) | 2022.05.30 |
[C#] Dictionary Value 內 List 중복 제거 (0) | 2022.05.28 |
[C#] JSON을 이용하여 Dictionary를 text file로 저장하기 (0) | 2022.05.27 |