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;
I am looking to create a generic method that receives a List. I need to determine what the object is within the list so that I can then do the necessary work according to the object that is being passed in within