I'm new to Xceed chart. I have a requirement that need to display the hours (12.00 AM to 12.00 AM) in x axis for selected day. In Y axis have to dispaly double value. I could able to use the examples from sample folders but X- axis not starting with 12.00 AM. It always starts with first available time. For example If I I use the following data to display in chart, the X- axis is starting with 5.30AM, but I want to start with 12.00AM and end with 12.00AM. How to acheive this?
lineSeries.AddXY(11, new DateTime(2008, 1, 1, 5, 30, 20).ToOADate());
lineSeries.AddXY(12, new DateTime(2008, 1, 1, 7, 50, 20).ToOADate());
lineSeries.AddXY(13, new DateTime(2008, 1, 1, 9, 35, 20).ToOADate());
lineSeries.AddXY(13, new DateTime(2008, 1, 1, 12, 15, 20).ToOADate());
lineSeries.AddXY(12, new DateTime(2008, 1, 1, 17, 25, 20).ToOADate());
lineSeries.AddXY(12, new DateTime(2008, 1, 1, 20, 17, 20).ToOADate());
Thanks
Sugumar