PowerTools SPREAD for Windows Forms 8.0J
Overlay プロパティ (LegendArea)


凡例エリアがプロットエリアと重なるかどうかを取得または設定します。
構文
'Declaration
 
Public Property Overlay As Boolean
'使用法
 
Dim instance As LegendArea
Dim value As Boolean
 
instance.Overlay = value
 
value = instance.Overlay
public bool Overlay {get; set;}
解説
Overlayプロパティがfalseの場合、LegendArea.VerticalプロパティまたはLegendAreaのフォントサイズが変更されると、プロットエリアの高さまたは幅が調整されます。Overlayプロパティがtrueの場合、プロットエリアの高さは調整されません。凡例エリア用のスペースが十分にない場合、凡例エリアはプロットエリアに重ねて描画されます。
次のサンプルコードは、Overlayプロパティを設定します。
FarPoint.Win.Chart.AreaSeries aseries = new FarPoint.Win.Chart.AreaSeries();
aseries.SeriesName = "Series1";
aseries.Values.Add(2);
aseries.Values.Add(4);
aseries.Values.Add(3);
aseries.Values.Add(5);
aseries.AreaFill = new FarPoint.Win.Chart.GradientFill(Color.Azure, Color.Bisque);
FarPoint.Win.Chart.AreaSeries aseries1 = new FarPoint.Win.Chart.AreaSeries();
aseries1.SeriesName = "Series2";
aseries1.Values.Add(1);
aseries1.Values.Add(2);
aseries1.Values.Add(4);
aseries1.Values.Add(8);
aseries1.AreaFill = new FarPoint.Win.Chart.GradientFill(Color.Azure, Color.Bisque);
aseries.AreaBorder = new FarPoint.Win.Chart.SolidLine(Color.Blue);
FarPoint.Win.Chart.YPlotArea plotArea = new FarPoint.Win.Chart.YPlotArea();
plotArea.Series.Add(aseries);
plotArea.Series.Add(aseries1);
FarPoint.Win.Chart.LabelArea Label = new FarPoint.Win.Chart.LabelArea();
Label.Text = "Area Chart";
Label.Border = new FarPoint.Win.Chart.SolidLine(System.Drawing.Color.Blue);
Label.Fill = new FarPoint.Win.Chart.SolidFill(System.Drawing.Color.Yellow);
Label.Location = new PointF(0.5F, 0.02F);
Label.TextFont = new System.Drawing.Font("Comic Sans MS", 10);
Label.TextFill = new FarPoint.Win.Chart.SolidFill(System.Drawing.Color.Black);
FarPoint.Win.Chart.LegendArea legend = new FarPoint.Win.Chart.LegendArea();
legend.Overlay = false;
legend.Border = new FarPoint.Win.Chart.SolidLine(System.Drawing.Color.Blue);
legend.Fill = new FarPoint.Win.Chart.SolidFill(System.Drawing.Color.Yellow);
legend.TextFont = new System.Drawing.Font("Comic Sans MS", 10);
legend.TextFill = new FarPoint.Win.Chart.SolidFill(System.Drawing.Color.Black);
FarPoint.Win.Chart.ChartModel model = new FarPoint.Win.Chart.ChartModel();
model.LabelAreas.Add(Label);
model.LegendAreas.Add(legend);
model.PlotAreas.Add(plotArea);
FarPoint.Win.Spread.Chart.SpreadChart chart = new FarPoint.Win.Spread.Chart.SpreadChart();
chart.Size = new Size(400, 300);
chart.Location = new Point(10, 10);
chart.Model = model;
fpSpread1.Sheets[0].Charts.Add(chart);
Dim aseries As New FarPoint.Win.Chart.AreaSeries
aseries.SeriesName = "Series1"
aseries.Values.Add(2.0)
aseries.Values.Add(4.0)
aseries.Values.Add(3.0)
aseries.Values.Add(5.0)
aseries.AreaFill = New FarPoint.Win.Chart.GradientFill(Color.Azure, Color.Bisque)
Dim aseries1 As New FarPoint.Win.Chart.AreaSeries
aseries1.SeriesName = "Series2"
aseries1.Values.Add(1.0)
aseries1.Values.Add(2.0)
aseries1.Values.Add(4.0)
aseries1.Values.Add(8.0)
aseries1.AreaFill = New FarPoint.Win.Chart.GradientFill(Color.Azure, Color.Bisque)
aseries.AreaBorder = New FarPoint.Win.Chart.SolidLine(Color.Blue)
Dim plotArea As New FarPoint.Win.Chart.YPlotArea()
plotArea.Series.Add(aseries)
plotArea.Series.Add(aseries1)
Dim Label As New FarPoint.Win.Chart.LabelArea()
Label.Text = "Area Chart"
Label.Border = New FarPoint.Win.Chart.SolidLine(System.Drawing.Color.Blue)
Label.Fill = New FarPoint.Win.Chart.SolidFill(System.Drawing.Color.Yellow)
Label.Location = New PointF(0.5F, 0.02F)
Label.TextFont = New System.Drawing.Font("Comic Sans MS", 10)
Label.TextFill = New FarPoint.Win.Chart.SolidFill(System.Drawing.Color.Black)
Dim legend As New FarPoint.Win.Chart.LegendArea()
legend.Overlay = False
legend.Border = New FarPoint.Win.Chart.SolidLine(System.Drawing.Color.Blue)
legend.Fill = New FarPoint.Win.Chart.SolidFill(System.Drawing.Color.Yellow)
legend.TextFont = New System.Drawing.Font("Comic Sans MS", 10)
legend.TextFill = New FarPoint.Win.Chart.SolidFill(System.Drawing.Color.Black)
Dim model As New FarPoint.Win.Chart.ChartModel()
model.LabelAreas.Add(Label)
model.LegendAreas.Add(legend)
model.PlotAreas.Add(plotArea)
Dim chart As New FarPoint.Win.Spread.Chart.SpreadChart()
chart.Size = New Size(400, 300)
chart.Location = New Point(10, 10)
chart.Model = model
FpSpread1.Sheets(0).Charts.Add(chart)
参照

LegendArea クラス
LegendArea メンバ

 

 


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