Specifies whether custom Z positions should be used.
The following code displays a XYZ scatter point.
Dim point As PointSeries = Chart.Series.Add(SeriesType.Point)
point.UseXValues = True
point.UseZValues = True
Chart.Axis(StandardAxis.PrimaryX).ScaleMode = AxisScaleMode.Numeric
Chart.Axis(StandardAxis.Depth).ScaleMode = AxisScaleMode.Numeric
point.AddPoint(12, 23, 4)
point.AddPoint(25, 34, 13)
...
PointSeries point = Chart.Series.Add(SeriesType.Point);
point.UseXValues = true;
point.UseZValues = true;
Chart.Axis(StandardAxis.PrimaryX).ScaleMode = AxisScaleMode.Numeric;
Chart.Axis(StandardAxis.Depth).ScaleMode = AxisScaleMode.Numeric;
point.AddPoint(12, 23, 4);
point.AddPoint(25, 34, 13);
...
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