Spread Windows Forms 13.0 Product Documentation
FarPoint.Win.Chart Assembly / FarPoint.Win.Chart Namespace / BoxWhiskerSeries Class / Border Property
Example


In This Topic
    Border Property (BoxWhiskerSeries)
    In This Topic
    Gets or sets the line for the surface.
    Syntax
    'Declaration
     
    Public Property Border As Line
    'Usage
     
    Dim instance As BoxWhiskerSeries
    Dim value As Line
     
    instance.Border = value
     
    value = instance.Border
    public Line Border {get; set;}
    Remarks
    Value of null (Nothing in VB) indicates that the line is unset for the surface.
    Example
    This example creates a box whisker chart.
    FarPoint.Win.Chart.BoxWhiskerSeries series1 = new FarPoint.Win.Chart.BoxWhiskerSeries();
    series1.SeriesName = "Store1";
    series1.Values.Add(12);
    series1.Values.Add(13);
    series1.Values.Add(20);
    series1.Border = new FarPoint.Win.Chart.SolidLine(Color.Black);
    series1.Fill = new FarPoint.Win.Chart.GradientFill(Color.Brown, Color.Orange);
    FarPoint.Win.Chart.BoxWhiskerSeries series2 = new FarPoint.Win.Chart.BoxWhiskerSeries();
    series2.SeriesName = "Store2";
    series2.Values.Add(15);
    series2.Values.Add(5);
    series2.Values.Add(25);
    series2.Border = new FarPoint.Win.Chart.SolidLine(Color.Black);
    series2.Fill = new FarPoint.Win.Chart.GradientFill(Color.Lavender, Color.DeepSkyBlue);
    FarPoint.Win.Chart.ClusteredBoxWhiskerSeries cseries = new FarPoint.Win.Chart.ClusteredBoxWhiskerSeries();
    cseries.Series.Add(series1);
    cseries.Series.Add(series2);
    FarPoint.Win.Chart.YPlotArea plotArea = new FarPoint.Win.Chart.YPlotArea();
    plotArea.Location = new System.Drawing.PointF(0.2f, 0.2f);
    plotArea.Series.Add(cseries);
    FarPoint.Win.Chart.ChartModel model = new FarPoint.Win.Chart.ChartModel();
    model.PlotAreas.Add(plotArea);
    FarPoint.Win.Spread.Chart.SpreadChart chart = new FarPoint.Win.Spread.Chart.SpreadChart();
    chart.Size = new Size(300, 300);
    chart.Model = model;
    fpSpread1.Sheets[0].Charts.Add(chart);
    Dim series1 As New FarPoint.Win.Chart.BoxWhiskerSeries()
    series1.SeriesName = "Store1"
    series1.Values.Add(12)
    series1.Values.Add(13)
    series1.Values.Add(20)
    series1.Border = New FarPoint.Win.Chart.SolidLine(Color.Black)
    series1.Fill = New FarPoint.Win.Chart.GradientFill(Color.Brown, Color.Orange)
    Dim series2 As New FarPoint.Win.Chart.BoxWhiskerSeries()
    series2.SeriesName = "Store2"
    series2.Values.Add(15)
    series2.Values.Add(5)
    series2.Values.Add(25)
    series2.Border = New FarPoint.Win.Chart.SolidLine(Color.Black)
    series2.Fill = New FarPoint.Win.Chart.GradientFill(Color.Lavender, Color.DeepSkyBlue)
    Dim cseries As New FarPoint.Win.Chart.ClusteredBoxWhiskerSeries()
    cseries.Series.Add(series1)
    cseries.Series.Add(series2)
    Dim plotArea As New FarPoint.Win.Chart.YPlotArea()
    plotArea.Location = New System.Drawing.PointF(0.2F, 0.2F)
    plotArea.Series.Add(cseries)
    Dim model As New FarPoint.Win.Chart.ChartModel()
    model.PlotAreas.Add(plotArea)
    Dim chart As New FarPoint.Win.Spread.Chart.SpreadChart()
    chart.Size = New Size(300, 300)
    chart.Model = model
    FpSpread1.Sheets(0).Charts.Add(chart)
    See Also