I think the problem probably comes with the fact that I have so many data points. How can I narrow down the number of labels that are show? Right now I don't see anything!
There's a default set of layout behaviors being applied to the axis labels, which you can turn off. The layout behavior is there to prevent label collisions. This will turn off the layout behaviors and you should see your labels:this.ultraChart1.Axis.X.Labels.Layout.Behavior = Infragistics.UltraChart.Shared.Styles.AxisLabelLayoutBehaviors.None;
Well, I set a numerictimeseries thinking it would solve my woes... It works great for the date time with only 30 data points, but when I try it with a set that house hundreds of datapoints I still get nothing displaying on the bottom of the screen.
I even tried setting the ticket mark stuff programmaticall for the multiple datapoints:
myChart.Axis.X.TickmarkInterval = 20; myChart.Axis.X.TickmarkIntervalType = Infragistics.UltraChart.Shared.Styles.AxisIntervalType.Hours; myChart.Axis.X.TickmarkStyle = Infragistics.UltraChart.Shared.Styles.AxisTickStyle.Smart; myChart.LineChart.TreatDateTimeAsString = false;