Draw vertical delimitersHello,<br/> <br/> is there a way to draw vertical lines that does not represent datas but simple delimiters ?<br/>  <br/> These delimiters would be used to highlight important X values (dates), for example the beginning of a new year.<br/>  <br/> Thanks.<br/>© 2009 Microsoft Corporation. All rights reserved.Fri, 03 Jul 2009 10:15:32 Zfab0c365-d871-48c9-8734-27b407ae3a69http://social.msdn.microsoft.com/Forums/en-US/MSWinWebChart/thread/fab0c365-d871-48c9-8734-27b407ae3a69#fab0c365-d871-48c9-8734-27b407ae3a69http://social.msdn.microsoft.com/Forums/en-US/MSWinWebChart/thread/fab0c365-d871-48c9-8734-27b407ae3a69#fab0c365-d871-48c9-8734-27b407ae3a69seriousmehttp://social.msdn.microsoft.com/Profile/en-US/?user=seriousmeDraw vertical delimitersHello,<br/> <br/> is there a way to draw vertical lines that does not represent datas but simple delimiters ?<br/>  <br/> These delimiters would be used to highlight important X values (dates), for example the beginning of a new year.<br/>  <br/> Thanks.<br/>Wed, 17 Jun 2009 08:35:25 Z2009-06-17T08:35:25Zhttp://social.msdn.microsoft.com/Forums/en-US/MSWinWebChart/thread/fab0c365-d871-48c9-8734-27b407ae3a69#76677a99-b45c-4f6c-b25c-9af00997701fhttp://social.msdn.microsoft.com/Forums/en-US/MSWinWebChart/thread/fab0c365-d871-48c9-8734-27b407ae3a69#76677a99-b45c-4f6c-b25c-9af00997701fAlex Gorevhttp://social.msdn.microsoft.com/Profile/en-US/?user=Alex%20GorevDraw vertical delimitersCheck Axis.StripLines collection. You can find more information about striplines in the samples.<br/><br/>Alex.<hr class="sig"><a href="http://blogs.msdn.com/alexgor">http://blogs.msdn.com/alexgor</a>Wed, 17 Jun 2009 16:28:01 Z2009-06-17T16:28:01Zhttp://social.msdn.microsoft.com/Forums/en-US/MSWinWebChart/thread/fab0c365-d871-48c9-8734-27b407ae3a69#066a181d-9f6a-401f-9b81-f0f1bc54f99chttp://social.msdn.microsoft.com/Forums/en-US/MSWinWebChart/thread/fab0c365-d871-48c9-8734-27b407ae3a69#066a181d-9f6a-401f-9b81-f0f1bc54f99cseriousmehttp://social.msdn.microsoft.com/Profile/en-US/?user=seriousmeDraw vertical delimitersThanks for your answer, it is almost that.<br/> <br/> But I would like to highlight arbitrary dates, for example the &quot;01/02/2003&quot; date.<br/> <br/> &quot;StripLine&quot; does not seem to contain such a property.<br/> <br/> <br/> Is there a way to set arbitrary dates ?<br/>Fri, 19 Jun 2009 08:16:15 Z2009-06-19T08:16:15Zhttp://social.msdn.microsoft.com/Forums/en-US/MSWinWebChart/thread/fab0c365-d871-48c9-8734-27b407ae3a69#54022ab7-de9c-4612-b8cb-8a5ed831d63ehttp://social.msdn.microsoft.com/Forums/en-US/MSWinWebChart/thread/fab0c365-d871-48c9-8734-27b407ae3a69#54022ab7-de9c-4612-b8cb-8a5ed831d63eAlex Gorevhttp://social.msdn.microsoft.com/Profile/en-US/?user=Alex%20GorevDraw vertical delimitersYou can do it with code like this:<br/><br/> <pre lang="x-c#">DateTime date = new DateTime(2003, 1, 2); StripLine sl = new StripLine() { BorderColor = Color.Red, BorderWidth = 3, BorderDashStyle = ChartDashStyle.Solid, IntervalOffset = date.ToOADate() };</pre> <br/><br/>Alex.<hr class="sig"><a href="http://blogs.msdn.com/alexgor">http://blogs.msdn.com/alexgor</a>Fri, 19 Jun 2009 15:10:02 Z2009-06-19T15:10:02Zhttp://social.msdn.microsoft.com/Forums/en-US/MSWinWebChart/thread/fab0c365-d871-48c9-8734-27b407ae3a69#c5060380-181e-426b-bc25-72e175af9296http://social.msdn.microsoft.com/Forums/en-US/MSWinWebChart/thread/fab0c365-d871-48c9-8734-27b407ae3a69#c5060380-181e-426b-bc25-72e175af9296seriousmehttp://social.msdn.microsoft.com/Profile/en-US/?user=seriousmeDraw vertical delimitersThanks a lot.<br/> <br/> The only remaining problem is that when a custom stripline is at the same position that an original one, the black ones, it is hidden.<br/> <br/> How to give the priority to the custom ones ?<br/> <br/>Fri, 19 Jun 2009 16:11:55 Z2009-06-19T16:11:55Zhttp://social.msdn.microsoft.com/Forums/en-US/MSWinWebChart/thread/fab0c365-d871-48c9-8734-27b407ae3a69#4ba954b9-4f55-4ac4-8c01-523cc25b45eahttp://social.msdn.microsoft.com/Forums/en-US/MSWinWebChart/thread/fab0c365-d871-48c9-8734-27b407ae3a69#4ba954b9-4f55-4ac4-8c01-523cc25b45eaAlex Gorevhttp://social.msdn.microsoft.com/Profile/en-US/?user=Alex%20GorevDraw vertical delimitersIf stripline width is set to zero it should be drawn on top of the gridline.<br/><br/>Alex.<hr class="sig"><a href="http://blogs.msdn.com/alexgor">http://blogs.msdn.com/alexgor</a>Tue, 30 Jun 2009 04:51:05 Z2009-06-30T04:51:05Zhttp://social.msdn.microsoft.com/Forums/en-US/MSWinWebChart/thread/fab0c365-d871-48c9-8734-27b407ae3a69#05c35e26-9e3a-4ce6-bff6-f84254fb61d4http://social.msdn.microsoft.com/Forums/en-US/MSWinWebChart/thread/fab0c365-d871-48c9-8734-27b407ae3a69#05c35e26-9e3a-4ce6-bff6-f84254fb61d4seriousmehttp://social.msdn.microsoft.com/Profile/en-US/?user=seriousmeDraw vertical delimitersThanks, it is perfect.<br/>Fri, 03 Jul 2009 10:14:35 Z2009-07-03T10:14:35Z