PowerTools ActiveReports for .NET 11.0J
DisplayInLegend プロパティ (DataPoint)
使用例 

凡例にDataPointを表示するかどうかを示す値を取得または設定します。
構文
'宣言
 
Public Property DisplayInLegend As NullableBoolean
public NullableBoolean DisplayInLegend {get; set;}
解説

DisplayInLegendプロパティは、SeriesおよびDataPointオブジェクトの両方に適用されます。単一系列のグラフ(例:ドーナッツ、ピラミッド、ファンネル)にAutoを設定した場合、SeriesオブジェクトにはFalse、DataPointオブジェクトにはTrueが適用されます。これ以外のグラフに対してAutoを設定した場合、SeriesオブジェクトにはTrue、DataPointオブジェクトにはFalseが適用されます。

使用例
private void detail_Format(object sender, EventArgs e)    
{    
   this.chartControl1.Series[1].Points[3].DisplayInLegend = true;    
}
Private Sub Detail1_Format(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Detail1.Format
   Me.ChartControl1.Series[1].Points[3].DisplayInLegend = True
End Sub
参照

関連項目

DataPoint クラス
DataPoint メンバ

 

 


©2003-2017 GrapeCity inc. All rights reserved.