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 图表的 X 轴的最小值和最大值。轴表示日期时间值。这些属性是双打的,另一个网站上的人建议使用 .ToOADate() 来转换日期:
DateChart.ChartAreas[0].AxisX.Maximum = minDate.ToOADate();
但是,这样做会引发 ArgumentException(“不是合法的 OleAut 日期。”)。还有另一种方法可以设置这些值吗?
干杯
事实证明,上面的代码是正确的。该异常是由页面上未正确配置的不同图表引发的。