Specifies whether the series should use custom X positions for the data points.
The following code displays a XY scatter point.
Dim point As PointSeries = Chart.Series.Add(SeriesType.Point)
Chart.Axis(StandardAxis.PrimaryX).ScaleMode = AxisScaleMode.Numeric
point.UseXValues = True
point.Add(12, 34)
point.Add(32, 12)
point.Add(12, 34)
...
PointSeries point = Chart.Series.Add(SeriesType.Point);
Chart.Axis(StandardAxis.PrimaryX).ScaleMode = AxisScaleMode.Numeric;
point.UseXValues = true;
point.Add(12, 34);
point.Add(32, 12);
point.Add(12, 34);
...
Target Platforms: Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2