Language/C#

[C#] chart addXY zero point not showing

비비이잉 2022. 7. 7. 14:42
반응형
DataPoint dummyPoint = new DataPoint(1, 0);
dummyPoint.Color = Color.Transparent;
Chart1.Series[0].Points.Add(dummyPoint);

차트에서 Chart1.Series[0].Points.AddXY(0, 어떤값) 이 들어가면 x축상에서 0 에 위치한게 아니라 1에 위치한 값으로 나타나는 에러 해결 방법 

-> dummy point 를 넣어준다 

 

[Solved] Point series incorrectly placing XValue at 1 instead of 0 - CodeProject

 

[Solved] Point series incorrectly placing XValue at 1 instead of 0 - CodeProject

CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900

www.codeproject.com

 

반응형