GrapeCity.ActiveReports.Chart.v9 アセンブリ > GrapeCity.ActiveReports.Chart 名前空間 > DataPoint クラス : DisplayInLegend プロパティ |
'宣言 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