PowerTools SPREAD for ASP.NET 8.0J
境界線

チャート周囲に表示される境界線は、色、線種、または幅を指定できます。

チャート 境界線

設定方法

SpreadChart クラスBorderColorBorderStyle、およびBorderWidthプロパティを設定します。

サンプルコード

次のサンプルコードは、チャート周囲にオレンジ色の境界線を表示します。

FarPoint.Web.Spread.Chart.SpreadChart chart = new FarPoint.Web.Spread.Chart.SpreadChart();
chart.BorderColor = Drawing.Color.DarkOrange;
chart.BorderStyle = BorderStyle.Solid;
chart.BorderWidth = 3;
fpSpread1.Sheets[0].Charts.Add(chart);
Dim chart As New FarPoint.Web.Spread.Chart.SpreadChart()
chart.BorderColor = Drawing.Color.DarkOrange
chart.BorderStyle = BorderStyle.Solid
chart.chart.BorderWidth = 3
FpSpread1.Sheets(0).Charts.Add(chart)        

関連トピック

 

 


© 2003-2015, GrapeCity inc. All rights reserved.