Series.ShadowColor 屬性
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
取得或設定數列的陰影色彩。
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
屬性值
- 屬性
範例
' 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) 以外的值。