How to draw candle charts in C#
问题 How can I draw candle charts in C#? Does anybody has any examples with a nice interface? 回答1: I've used the MSChart and found it to be pretty good. It supports candlestick charts. I've used ZedGraph as well but found a few graphical anomalies showed up on my charts but they were otherwise good as well. 回答2: I use this for stock data but its in VB With Chart1.ChartAreas("myarea") .AxisY.Maximum = (Math.Ceiling((HighValue * 100)) / 100) .AxisY.Minimum = (Math.Floor((LowValue * 100)) / 100)