Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
ZedGraph 喜欢为其轴使用工程记数法,例如 300*10^3,而不是科学记数法,例如 3*10^5。改变这种情况的最简单方法是什么?
我想不出一种自动的方法来做到这一点,但它只是手动完成的一行代码:
zedGraph1.GraphPane.YAxis.Scale.Mag = (int)Math.Floor(Math.Log10(zedGraph1.GraphPane.YAxis.Scale.Max));