I am having some real trouble displaying a simple line chart, maybe I am making things too difficult, but I am hoping someone can point me in the right direction. I have some simple data, data points taken a random time intervals. I would like them displayed "Chronologically". When I first attempted this, I had a simple DataTable, but all of my points were displayed one right after another, (must have been treating DateTime as a string). Currently I tried to create a composite Line Chart, using a NumericTimeSeries. and when I add call ultrachart.Series.Add(myNumricSeries), it adds it to the series as expected, but no data is displayed on the chart when it loads.
All help is greatly appreciated!
Greg
i think this will explain what you need to know: http://help.infragistics.com/Help/NetAdvantage/NET/2008.3/CLR2.0/html/Chart_Display_Data_on_a_Time_Scale_Axis.html
I'm still looking for some assistance, however I seem to have gotten past my data issue. I am not displaying the scatter data as I expect, but I cannot get the ConnectWithLines property to draw lines between my data points, I am at a loss, I have scoured the properties and I am fairly certain that I should be seeing lines drawn, but I am having no luck. I also have a question on drawing tickmarks on my X-Axis (time) I would like to get the axis to draw tickmarks every half hour, with smaller marks every 5 mins in between, I assume I'll have to do some math to figure out the scale and such, but I can't seem to control when the tickmarks are drawn, I see the start and end time of whatever scale I am looking at, and one marker in between, but i can't seem to control how often those ticks are drawn, and my smaller tickmarks should be like the marks on a ruler, just little marks, not large ones like the major ticks..