Display dates on X-axisHi,<br/>     I have to plot a chart based on three columns, first column consists of dates which may be reoccuring in the column, second column has status and third column has count. I am just databinding the table column for the series based on status and the resulting chart is totally bad where the dates are reoccuring and all messed up.<br/><br/>Table..<br/>Date           Status                   Value<br/>05/21/09     New                        3<br/>05/22/09     Order Placed            5<br/>05/22/09     Order approved        3<br/>05/23/09     Returned                  1<br/>05/23/09     Closed                     3<br/>05/24/09     Closed                     2<br/><br/>So if I use the above table, I get the chart but the dates 22 and 23 are appearing twice on the X-axis with normal interval. How should I program if the dates are same. Any Help is much appreciated and Thanks a lot for your Help.<br/><br/>Regards,<br/>Bandaru© 2009 Microsoft Corporation. All rights reserved.Fri, 10 Jul 2009 19:58:25 Z152daa6d-0f81-4837-8b94-be13b8869612http://social.msdn.microsoft.com/Forums/en-US/MSWinWebChart/thread/152daa6d-0f81-4837-8b94-be13b8869612#152daa6d-0f81-4837-8b94-be13b8869612http://social.msdn.microsoft.com/Forums/en-US/MSWinWebChart/thread/152daa6d-0f81-4837-8b94-be13b8869612#152daa6d-0f81-4837-8b94-be13b8869612Bandaru30http://social.msdn.microsoft.com/Profile/en-US/?user=Bandaru30Display dates on X-axisHi,<br/>     I have to plot a chart based on three columns, first column consists of dates which may be reoccuring in the column, second column has status and third column has count. I am just databinding the table column for the series based on status and the resulting chart is totally bad where the dates are reoccuring and all messed up.<br/><br/>Table..<br/>Date           Status                   Value<br/>05/21/09     New                        3<br/>05/22/09     Order Placed            5<br/>05/22/09     Order approved        3<br/>05/23/09     Returned                  1<br/>05/23/09     Closed                     3<br/>05/24/09     Closed                     2<br/><br/>So if I use the above table, I get the chart but the dates 22 and 23 are appearing twice on the X-axis with normal interval. How should I program if the dates are same. Any Help is much appreciated and Thanks a lot for your Help.<br/><br/>Regards,<br/>BandaruTue, 30 Jun 2009 16:17:47 Z2009-06-30T16:17:47Zhttp://social.msdn.microsoft.com/Forums/en-US/MSWinWebChart/thread/152daa6d-0f81-4837-8b94-be13b8869612#bce51cf0-6f42-4d42-b110-5ac7d1441f3fhttp://social.msdn.microsoft.com/Forums/en-US/MSWinWebChart/thread/152daa6d-0f81-4837-8b94-be13b8869612#bce51cf0-6f42-4d42-b110-5ac7d1441f3fNader Nashed MSFThttp://social.msdn.microsoft.com/Profile/en-US/?user=Nader%20Nashed%20MSFTDisplay dates on X-axisI am assuming you need to create a series for each status type in your Status Column and have your Y value as your Value column<br/><span style="font-size:x-small"><font size=2> <p>The follwing API should work, it will group the series by Status and set the X value to Date and Y value to Value<br/>chart1.DataBindCrossTable(datasource,</p> </font></span> <p><span style="color:#a31515;font-size:x-small"><span style="color:#a31515;font-size:x-small">&quot;Status&quot;</span></span><span style="font-size:x-small">, </span><span style="color:#a31515;font-size:x-small"><span style="color:#a31515;font-size:x-small">&quot;Date&quot;</span></span><span style="font-size:x-small">,</span><span style="color:#a31515;font-size:x-small"><span style="color:#a31515;font-size:x-small">&quot;Value&quot;</span></span><span style="font-size:x-small">, </span><span style="color:#a31515;font-size:x-small"><span style="color:#a31515;font-size:x-small">&quot;&quot;</span></span><span style="font-size:x-small">);<br/><br/></span></p>Wed, 01 Jul 2009 16:45:02 Z2009-07-01T16:45:02Z