I am building an ASP.NET Chart (System.Web.UI.DataVisualization.Charting.Chart) in Visual Studio 2008 (C#) with Custom Labels on the X axis. I want to hide the automatically generated axis labels and just show my custom labels. What is the best way to do this?
If I set the Axis property LabelStyle.Enabled = false then my custom labels are hidden as well.
UPDATE: By setting the IntervalOffset property to 1000, it moves the automatic labels off the chart. However, there is now a gap between the bottom of the chart and the custom labels.