Spread Windows Forms 12.0 Product Documentation
XValues Property (XYBubbleSeries)
Example 


FarPoint.Win.Chart Assembly > FarPoint.Win.Chart Namespace > XYBubbleSeries Class : XValues Property
Gets the collection of x values for the series.
Syntax
'Declaration
 
Public ReadOnly Property XValues As DoubleCollection
'Usage
 
Dim instance As XYBubbleSeries
Dim value As DoubleCollection
 
value = instance.XValues
public DoubleCollection XValues {get;}
Remarks
If no x values are supplied then the indices of the data points will be used for the x values.
Example
This example sets the XValues property.
FarPoint.Win.Chart.XYBubbleSeries series0 = new FarPoint.Win.Chart.XYBubbleSeries();
series0.SeriesName = "Series 0";
series0.VaryColors = true;
series0.XValues.Add(1.0);
series0.XValues.Add(2.0);
series0.XValues.Add(4.0);
series0.XValues.Add(8.0);
series0.YValues.Add(2.0);
series0.YValues.Add(4.0);
series0.YValues.Add(3.0);
series0.YValues.Add(5.0);
FarPoint.Win.Chart.XYBubbleSeries series1 = new FarPoint.Win.Chart.XYBubbleSeries();
series1.SeriesName = "Series 1";
series1.XValues.Add(1.0);
series1.XValues.Add(3.0);
series1.XValues.Add(5.0);
series1.XValues.Add(7.0);
series1.YValues.Add(1.0);
series1.YValues.Add(2.0);
series1.YValues.Add(4.0);
series1.YValues.Add(8.0);
FarPoint.Win.Chart.XYPlotArea plotArea = new FarPoint.Win.Chart.XYPlotArea();
plotArea.Location = new System.Drawing.PointF(0.2F, 0.2F);
plotArea.Size = new System.Drawing.SizeF(0.6F, 0.6F);
plotArea.Series.Add(series0);
plotArea.Series.Add(series1);
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.Model = model;
chart.Size = new Size(200, 200);
chart.Location = new Point(50, 50);
FpSpread1.Sheets[0].Charts.Add(chart);
Dim series0 As New FarPoint.Win.Chart.XYBubbleSeries()
series0.SeriesName = "Series 0"
series0.VaryColors = True
series0.XValues.Add(1.0)
series0.XValues.Add(2.0)
series0.XValues.Add(4.0)
series0.XValues.Add(8.0)
series0.YValues.Add(2.0)
series0.YValues.Add(4.0)
series0.YValues.Add(3.0)
series0.YValues.Add(5.0)
Dim series1 As New FarPoint.Win.Chart.XYBubbleSeries()
series1.SeriesName = "Series 1"
series1.XValues.Add(1.0)
series1.XValues.Add(3.0)
series1.XValues.Add(5.0)
series1.XValues.Add(7.0)
series1.YValues.Add(1.0)
series1.YValues.Add(2.0)
series1.YValues.Add(4.0)
series1.YValues.Add(8.0)
Dim plotArea As New FarPoint.Win.Chart.XYPlotArea()
plotArea.Location = New System.Drawing.PointF(0.2F, 0.2F)
plotArea.Size = New System.Drawing.SizeF(0.6F, 0.6F)
plotArea.series.Add(series0)
plotArea.Series.Add(series1)
Dim model As New FarPoint.Win.Chart.ChartModel()
model.PlotAreas.Add(plotArea)

Dim chart As New FarPoint.Win.Spread.Chart.SpreadChart()
chart.Model = model
chart.Size = New Size(200, 200)
chart.Location = New Point(50, 50)
FpSpread1.Sheets(0).Charts.Add(chart)
See Also

Reference

XYBubbleSeries Class
XYBubbleSeries Members