ColorIndex 屬性 (Excel 圖表)
傳回或設定框線、字型或內景的色彩,如下表所示。 該色彩可指定為目前調色盤中的索引值,或可以為下列其中一個 XlColorIndex 常數:xlColorIndexAutomatic 或 xlColorIndexNone。 讀取/寫入 Variant。
expression.ColorIndex
需要 expression。 可傳回 [套用至] 清單內其中一個物件的運算式。
物件 | 描述 |
---|---|
Border | 框線的色彩。 |
Font | 字型的色彩。 |
Interior | 填滿內景的色彩。 將 ColorIndex 設定為 xlColorIndexNone 以指定您不要內景填滿。 將 ColorIndex 設定為 xlColorIndexAutomatic 以指定自動填滿 (繪圖物件)。 |
此屬性指定顏色作為調色盤的索引。 下圖顯示預設調色盤中的色彩索引值。
下列範例會假定您使用的是預設調色板。
本範例會設定數值座標軸主要格線的色彩。
With myChart.Axes(xlValue)
If .HasMajorGridlines Then
'Set color to blue
.MajorGridlines.Border.ColorIndex = 5
End If
End With
本範例會將圖表區域內景色彩設定為紅色,並將框線色彩設定為藍色。
With myChart.ChartArea
.Interior.ColorIndex = 3
.Border.ColorIndex = 5
End With
注意
如果要在 Visual Basic 中使用具有 FormatCondition 的色彩,請參閱 Interior.ColorIndex 屬性。
有關於 Office VBA 或這份文件的問題或意見反應嗎? 如需取得支援服務並提供意見反應的相關指導,請參閱 Office VBA 支援與意見反應。