I'm trying to get the x axis to show a datetime value instead of a number. Is this possible? I've looked at several other post but they look like it is only for a scatter chart. here is the latest code I'm trying.
Axis xAxis = new Axis(); xAxis.AxisType = AxisType.PrimaryX; xAxis.AutoRange = false; xAxis.Label.Format = "{0:H:mm:ss}";chart2.Axes.Add(xAxis);
You could always set the label fields programmatically using string conversion. Maybe this post will help you out:
https://es.infragistics.com/community/forums/f/retired-products-and-controls/43658/is-it-possible-to-set-x-axis-in-datetime-format-using-line-type-chart/239429#239429