圖表1。series[1]. points . addxy(strdt[j],?p[j]);
strdt數組是什麽類型?
不是雙型吧?
我猜妳這樣加的點的橫坐標是沒有標註的,默認是從1到N,所以又會從1開始。生成的圖像從橫坐標的最左側開始繪制。
設置strdt數組為日期數組,p[j]為雙精度數組,設置chart1的橫坐標。ChartAreas[0]作為時間類型。
在循環內部:
圖表1。series[1]. points . addxy(strdt[j].ToOADate(),?p[j]);
設置橫坐標顯示外觀:
圖表1。chart areas[0]. axisx . label style . format = " yyyy-MM-DD ";