Gives you access to the collection of strings used for axis labels.
The following code displays custom labels for the PrimaryX axis (assuming that it is in dimension mode).
Dim axis As Axis = Chart.Axis(StandardAxis.PrimaryX)
axis.DimensionScale.AutoLabels = False
axis.Labels.Add("Category1")
axis.Labels.Add("Category2")
axis.Labels.Add("Category3")
axis.Labels.Add("Category4")
Axis axis = Chart.Axis(StandardAxis.PrimaryX);
axis.DimensionScale.AutoLabels = false;
axis.Labels.Add("Category1");
axis.Labels.Add("Category2");
axis.Labels.Add("Category3");
axis.Labels.Add("Category4");
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