共用方式為


Series.ShadowColor 屬性

定義

取得或設定數列的陰影色彩。

public:
 property System::Drawing::Color ShadowColor { System::Drawing::Color get(); void set(System::Drawing::Color value); };
[System.ComponentModel.Bindable(true)]
[System.Web.UI.PersistenceMode(System.Web.UI.PersistenceMode.Attribute)]
public System.Drawing.Color ShadowColor { get; set; }
[<System.ComponentModel.Bindable(true)>]
[<System.Web.UI.PersistenceMode(System.Web.UI.PersistenceMode.Attribute)>]
member this.ShadowColor : System.Drawing.Color with get, set
Public Property ShadowColor As Color

屬性值

Color 值。 預設色彩為 Black

屬性

範例

' Set series shadow color and offset  
Public Sub SetSeriesShadow()  
     Chart1.Series("Default"}.ShadowColor = Color.Blue  
     Chart1.Series("Default"}.ShadowOffset = 2  
End Sub 'SetSeriesShadow  
// Set series shadow color and offset   
public void SetSeriesShadow()  
{      
    Chart1.Series("Default"}.ShadowColor = Color.Blue;  
    Chart1.Series["Default"].ShadowOffset = 2;  
}  

備註

取得或設定數列的陰影色彩,可以是任何有效的 ARGB (Alpha、紅色、綠色、藍色) 值。

Alpha 值可用來達成實際陰影效果;嘗試針對陰影使用色彩值為 「128,0,0,0」。

若要實作陰影,請將 ShadowOffset 屬性設定為零 (0) 以外的值。

適用於