我试图在代码后面获得MS Chart Control的AxisX间隔。但是当我尝试检索该值时,即使它具有默认值,它也会返回零。
'Doesn't return the correct value, only returns 0
Dim XInterval As Double = mainChart.ChartAreas(0).AxisX.Interval
'
'
'This allows me to set the value and works just fine, but I also need to get it first.
mainChart.ChartAreas(0).AxisX.Interval = 2000
答案 0 :(得分:1)
根据Axis.Interval Property上的MSDN文章:
表示轴间隔的double值。 默认值 value是“Auto”,由零(0)值表示。
所以,我正在使用“默认值”(自动),这可以解释为什么你会得到零回归。