Excel Graph (CrossesAt 屬性)
傳回或設定數值座標軸上與類別座標軸的交點。 僅套用至數值座標軸。 讀取/寫入的 Double。
運算式。CrossesAt
需要 expression。 可傳回 [套用至] 清單內其中一個物件的運算式。
設定此屬性會 置於 屬性變更為 xlAxisCrossesCustom 。
這個屬性不能用於 3D 圖表或雷達圖。
本範例會將 ActiveChart 的類別座標軸與數值座標軸設定在值 3 處相交。
Sub Chart()
' Create a sample source of data.
Range("A1") = "2"
Range("A2") = "4"
Range("A3") = "6"
Range("A4") = "3"
' Create a chart based on the sample source of data.
Charts.Add
With ActiveChart
.ChartType = xlLineMarkersStacked
.SetSourceData Source:=Sheets("Sheet1").Range("A1:A4"), PlotBy:= xlColumns
.Location Where:=xlLocationAsObject, Name:="Sheet1"
End With
' Set the category axis to cross the value axis at value 3.
ActiveChart.Axes(xlValue).Select
Selection.CrossesAt = 3
End Sub
有關於 Office VBA 或這份文件的問題或意見反應嗎? 如需取得支援服務並提供意見反應的相關指導,請參閱 Office VBA 支援與意見反應。