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