Ok.... I have a WinForms Chart that is successfully plotting my series. HOWEVER, the X Axis numeric labels (not the Title, the "number line") do NOT display at all. I have not altered or touched anything! I have the EXACT same setup in another VSExpress project, same plot setup, and those Axis numeric labels display just fine. What the hell is going on???
** The Y Axis numbers show up just fine, with no issue. It's only the X Axis that is being like this.
* The Y axis values are Pressures values * The X Axis values are Volumes values
I have tried:
- Forcing the "Interval" = 1
- Forcing the Axis "Max" / "Min" to specific values
- Setting the "IntervalType"
- Setting the "LabelStyle"
Nothing has changed. Zero effect. There is still NO indication to the user what the values of the X Axis are displaying. There is only ONE plot, ONE chart, ONE chartArea and a single series with 3 data points. WHERE. ARE. THE. AXIS. NUMBERS!??
I was under the impression, that unless the user has tampered with something, those axis labels should just show up automatically (and then it's up to the user to format, etc.).... am I wrong about that?
Here is a snippet from the Designer:
chartArea2.AxisX.MinorGrid.LineDashStyle = System.Windows.Forms.DataVisualization.Charting.ChartDashStyle.Dash;
chartArea2.AxisX.MinorTickMark.Enabled = true;
chartArea2.AxisX.Title = "Cum. Adjusted Inventory (Mcf)";
chartArea2.AxisX.TitleFont = new System.Drawing.Font("Microsoft Sans Serif", 14F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
chartArea2.AxisX.LabelStyle.Interval = 1;
chartArea2.AxisX.IntervalType = System.Windows.Forms.DataVisualization.Charting.DateTimeIntervalType.Auto;
chartArea2.AxisY.MinorGrid.LineDashStyle = System.Windows.Forms.DataVisualization.Charting.ChartDashStyle.Dash;
chartArea2.AxisY.MinorTickMark.Enabled = true;
chartArea2.AxisY.Title = "Pressure (psia)";
chartArea2.AxisY.TitleFont = new System.Drawing.Font("Microsoft Sans Serif", 14F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
~Sincerely frustrated, A