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.
默认情况下,ASP.NET 图表控件的最低级别是0,我想将此级别设置为-1. 这样0就可以正确显示 y 轴上的值...
0
-1
这应该有效。
var chart = new Chart(); // // Code to define chart areas etc... // chart.ChartAreas[0].AxisY.Minimum = -1;