Crandel Posted April 15, 2007 Report Share Posted April 15, 2007 Hi, I need to hide only the AxisX labels and his space without also hiding the grid lines. I tried with chart1.AxisX.Style |= AxisStyles.HideText; chart1.Border = null; but space border keep only with chart1.AxisX.Visible = false; the text and space hide, but grid lines too. Is there a way? Thanks Link to comment Share on other sites More sharing options...
Frank Posted April 18, 2007 Report Share Posted April 18, 2007 THis should do it: chart1.PlotAreaMargin.Bottom = 1; chart1.AxisX.Style |= AxisStyles.HideText; Link to comment Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.