<?xml version="1.0"?><?xml-stylesheet type="text/xsl" href="http://code.msdn.microsoft.com/rss.xsl"?><rss version="2.0"><channel><title>Samples Environment for Microsoft Chart Controls</title><link>http://code.msdn.microsoft.com/mschart/Project/ProjectRss.aspx</link><description>The samples environment for Microsoft Chart Controls for .NET Framework contains over 200 samples for both ASP.NET and Windows Forms. The samples cover every major feature in Chart Controls for .NE...</description><item><title>NEW POST: Bar + Plot series</title><link>http://code.msdn.microsoft.com/mschart/Thread/View.aspx?ThreadId=2493</link><description>&lt;div class="wikidoc"&gt;
Reverse the data before you bind it to the chart&lt;br /&gt;
&lt;/div&gt;</description><author>amiglin</author><pubDate>Fri, 06 Nov 2009 23:53:57 GMT</pubDate><guid isPermaLink="false">NEW POST: Bar + Plot series 20091106P</guid></item><item><title>NEW POST: Create charts via a checkboxlist loop.</title><link>http://code.msdn.microsoft.com/mschart/Thread/View.aspx?ThreadId=2507</link><description>&lt;div class="wikidoc"&gt;
really not enough visiblity on your project to give even a clue.  What line raises the error?&lt;br /&gt;
&lt;/div&gt;</description><author>amiglin</author><pubDate>Fri, 06 Nov 2009 23:51:55 GMT</pubDate><guid isPermaLink="false">NEW POST: Create charts via a checkboxlist loop. 20091106P</guid></item><item><title>NEW POST:  ChartPic_000009.png' is denied.</title><link>http://code.msdn.microsoft.com/mschart/Thread/View.aspx?ThreadId=2511</link><description>&lt;div class="wikidoc"&gt;
You gave permission to your account Or to the account that runs the application?&lt;br /&gt;
&lt;/div&gt;</description><author>amiglin</author><pubDate>Fri, 06 Nov 2009 23:47:14 GMT</pubDate><guid isPermaLink="false">NEW POST:  ChartPic_000009.png' is denied. 20091106P</guid></item><item><title>NEW POST: Chart Series</title><link>http://code.msdn.microsoft.com/mschart/Thread/View.aspx?ThreadId=2369</link><description>&lt;div class="wikidoc"&gt;
Have you tried mychart.series.remove()?&lt;br /&gt;
&lt;/div&gt;</description><author>amiglin</author><pubDate>Fri, 06 Nov 2009 23:45:10 GMT</pubDate><guid isPermaLink="false">NEW POST: Chart Series 20091106P</guid></item><item><title>NEW POST: Please my x64 Compatible</title><link>http://code.msdn.microsoft.com/mschart/Thread/View.aspx?ThreadId=2461</link><description>&lt;div class="wikidoc"&gt;
Why do you need a 64bit JET OLEDB provider?&lt;br /&gt;
&lt;/div&gt;</description><author>amiglin</author><pubDate>Fri, 06 Nov 2009 23:39:02 GMT</pubDate><guid isPermaLink="false">NEW POST: Please my x64 Compatible 20091106P</guid></item><item><title>NEW POST: Creating Stock Charts using MS Chart</title><link>http://code.msdn.microsoft.com/mschart/Thread/View.aspx?ThreadId=2505</link><description>&lt;div class="wikidoc"&gt;
You can Provide Multiple Y values per X Axis. Try looking into that.&lt;br /&gt;
&lt;/div&gt;</description><author>amiglin</author><pubDate>Fri, 06 Nov 2009 23:37:46 GMT</pubDate><guid isPermaLink="false">NEW POST: Creating Stock Charts using MS Chart 20091106P</guid></item><item><title>NEW POST:  ChartPic_000009.png' is denied.</title><link>http://code.msdn.microsoft.com/mschart/Thread/View.aspx?ThreadId=2511</link><description>&lt;div class="wikidoc"&gt;
PLease help me out in this. Its run fine on local machine but  when i tranfer to server it gives me error  Access to path xxxxxxxx/ChartPic_000009.png' is denied.&lt;br /&gt;I have give  permission but still getting the same  error.&lt;br /&gt;
&lt;/div&gt;</description><author>anne1383</author><pubDate>Fri, 06 Nov 2009 11:27:07 GMT</pubDate><guid isPermaLink="false">NEW POST:  ChartPic_000009.png' is denied. 20091106A</guid></item><item><title>NEW POST: Create charts via a checkboxlist loop.</title><link>http://code.msdn.microsoft.com/mschart/Thread/View.aspx?ThreadId=2507</link><description>&lt;div class="wikidoc"&gt;
Hi All,&lt;br /&gt; &lt;br /&gt;I have been playing around with the new ASP.NET chart control and really like it. I am having a bit of trouble dynamically building a new charts for each item choosen in a check box list. The code below works only if one item is selected from the checkbox list. If more than one item is selected it errors out. Is it because of the way I am creating the object?&lt;br /&gt; &lt;br /&gt;Dim choice As ListItem&lt;br /&gt; &lt;br /&gt;For Each choice In QSColumn_CBL.Items&lt;br /&gt;            If choice.Selected = True Then&lt;br /&gt;'Build a SQL based upon the current value in the loop and set the SQLDataSource Control&lt;br /&gt;                GraphDS.SelectCommand = &amp;quot;My Dynamic Statement Here - This Works...&amp;quot;&lt;br /&gt; &lt;br /&gt;'Create chart&lt;br /&gt;                Dim MyChart As New Chart()&lt;br /&gt;                MyChart.Titles.Add(choice.Text &amp;amp; &amp;quot; Chart&amp;quot;)&lt;br /&gt;                MyChart.DataSource = GraphDS&lt;br /&gt;                MyChart.Width = 800&lt;br /&gt;                MyChart.Height = 500&lt;br /&gt; &lt;br /&gt;'Format the column name for the XValueMember&lt;br /&gt;                Dim colname As String&lt;br /&gt;                colname = choice.Value.ToString.Substring(choice.Value.ToString.IndexOf(&amp;quot;.&amp;quot;) + 1, choice.Value.ToString.Length - choice.Value.ToString.IndexOf(&amp;quot;.&amp;quot;) - 1)&lt;br /&gt; &lt;br /&gt;'Create chart Series&lt;br /&gt;                Dim MySeries As New Series&lt;br /&gt;                MySeries.Name = choice.Text&lt;br /&gt;                MySeries.XValueMember = colname&lt;br /&gt;                MySeries.YValueMembers = &amp;quot;Count&amp;quot;&lt;br /&gt;                MySeries.IsValueShownAsLabel = True&lt;br /&gt;                MySeries.ChartType = SeriesChartType.Bar&lt;br /&gt;                MyChart.Series.Add(MySeries)&lt;br /&gt; &lt;br /&gt;'Create chart Area&lt;br /&gt;                Dim MyChartArea As New ChartArea&lt;br /&gt;                MyChartArea.AxisX.Interval = 1&lt;br /&gt;                MyChart.ChartAreas.Add(MyChartArea)&lt;br /&gt;                MyChart.BorderSkin.SkinStyle = BorderSkinStyle.FrameThin2&lt;br /&gt; &lt;br /&gt;'Create a new DIV for each chart&lt;br /&gt;                Dim MyPan As New Panel&lt;br /&gt;                MyPan.Controls.Add(MyChart)&lt;br /&gt;'Add the chart into the place holder&lt;br /&gt;                ChartPlaceHolder.Controls.Add(MyPan)&lt;br /&gt; &lt;br /&gt;            End If&lt;br /&gt;'Go to the next selected value and build another chart&lt;br /&gt;Next&lt;br /&gt; &lt;br /&gt;This is the error Im getting when more than one column is selected from the checkbox list&lt;br /&gt; &lt;br /&gt;&amp;quot;Column with name 'Model' was not found.&amp;quot;&lt;br /&gt; &lt;br /&gt;Its like its not changing the XvalueMember for the next selected item...&lt;br /&gt;Thanks for any advise!&lt;br /&gt; &lt;br /&gt;
&lt;/div&gt;</description><author>rdavidson</author><pubDate>Thu, 05 Nov 2009 15:12:28 GMT</pubDate><guid isPermaLink="false">NEW POST: Create charts via a checkboxlist loop. 20091105P</guid></item><item><title>NEW POST: Creating Stock Charts using MS Chart</title><link>http://code.msdn.microsoft.com/mschart/Thread/View.aspx?ThreadId=2505</link><description>&lt;div class="wikidoc"&gt;
I want to create a &lt;b&gt;stock chart&lt;/b&gt; which will be updated periodically, but I am unable to figure out how will I provide the Candlestick values like 'open', 'close', 'high' 'low' etc ...&lt;br /&gt; &lt;br /&gt;from the WinForm examples, I found the following lines of code;&lt;br /&gt; &lt;br /&gt;----------------------&lt;br /&gt; &lt;br /&gt;// Set series chart type&lt;br /&gt;chart1.Series&lt;a href="http://code.msdn.microsoft.com/mschart/Wiki/View.aspx?title=%5b%22Price%22%5d"&gt;[&amp;quot;Price&amp;quot;]&lt;/a&gt;.ChartType = SeriesChartType.Candlestick;&lt;br /&gt; &lt;br /&gt;// Show both open and close marks&lt;br /&gt;chart1.Series&lt;a href="http://code.msdn.microsoft.com/mschart/Wiki/View.aspx?title=%5b%22Series1%22%5d"&gt;[&amp;quot;Series1&amp;quot;]&lt;/a&gt;&lt;a href="http://code.msdn.microsoft.com/mschart/Wiki/View.aspx?title=%5b%22ShowOpenClose%22%5d"&gt;[&amp;quot;ShowOpenClose&amp;quot;]&lt;/a&gt; = &amp;quot;Both&amp;quot;;&lt;br /&gt; &lt;br /&gt;// Set the style of the open-close marks&lt;br /&gt;chart1.Series&lt;a href="http://code.msdn.microsoft.com/mschart/Wiki/View.aspx?title=%5b%22Series1%22%5d"&gt;[&amp;quot;Series1&amp;quot;]&lt;/a&gt;&lt;a href="http://code.msdn.microsoft.com/mschart/Wiki/View.aspx?title=%5b%22OpenCloseStyle%22%5d"&gt;[&amp;quot;OpenCloseStyle&amp;quot;]&lt;/a&gt; = &amp;quot;Line&amp;quot;;&lt;br /&gt; &lt;br /&gt;----------------&lt;br /&gt; &lt;br /&gt; &lt;br /&gt;thanks in advance for any help or example code.&lt;br /&gt;
&lt;/div&gt;</description><author>Aatif</author><pubDate>Thu, 05 Nov 2009 12:54:28 GMT</pubDate><guid isPermaLink="false">NEW POST: Creating Stock Charts using MS Chart 20091105P</guid></item><item><title>NEW POST: Bar + Plot series</title><link>http://code.msdn.microsoft.com/mschart/Thread/View.aspx?ThreadId=2493</link><description>&lt;div class="wikidoc"&gt;
H guys,&lt;br /&gt; &lt;br /&gt;I have been using the MSChart control to try and reproduce the visuals I've been given for a type of graph in an application I'm working on. The graph looks like this:&lt;br /&gt; &lt;br /&gt;&lt;a href="http://www.haushinka.org/media/example_graph.jpg" class="externalLink"&gt;http://www.haushinka.org/media/example_graph.jpg&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt;&lt;br /&gt; &lt;br /&gt;There are essentially three series running in parallel - one is the &amp;quot;current&amp;quot; value, marked as a bar chart, and the other two are projected and target series, displayed as plot charts.&lt;br /&gt; &lt;br /&gt;Due to the bar chart having the axis' reversed, it appears to not like me combining the two types together - I get exceptions along the lines of &amp;quot;One or more charts cannot be used in conjunction.&amp;quot;&lt;br /&gt; &lt;br /&gt;I have been looking at potentialy using the Pre/PostPaint evets to draw the projected and target series, though it's a bit of a dirty hack.&lt;br /&gt; &lt;br /&gt;Any ideas on a solution to being able to get these two types of data displayed together?&lt;br /&gt; &lt;br /&gt; &lt;br /&gt;Regards,&lt;br /&gt;Alvaro&lt;br /&gt;
&lt;/div&gt;</description><author>Alvy</author><pubDate>Tue, 03 Nov 2009 17:41:21 GMT</pubDate><guid isPermaLink="false">NEW POST: Bar + Plot series 20091103P</guid></item><item><title>NEW POST: A little bug on HistogramChartHelper.cs</title><link>http://code.msdn.microsoft.com/mschart/Thread/View.aspx?ThreadId=2487</link><description>&lt;div class="wikidoc"&gt;
Hi, &lt;br /&gt; &lt;br /&gt;I am using Microsoft Chart Controls, think this is very useful. Thank you for your developing.&lt;br /&gt; &lt;br /&gt;I have read 'HistogramChartHelper.cs', i think there is little bug about the settting of AxisY2. &lt;br /&gt;I am afraid you have enlarged this value by 100 times.......&lt;br /&gt;(Line 185 ~ 187, or change the format of AxisY2 in Line 180)&lt;br /&gt; &lt;br /&gt; &lt;br /&gt;For example, in your download-samples: &lt;br /&gt;Chart types - Data distribution Charts - Histogram chart&lt;br /&gt;the percentage of  total, will show 1000%, 2000%, etc.&lt;br /&gt;But in the real world it cannot exceed 1 (100%). Right?&lt;br /&gt;
&lt;/div&gt;</description><author>Kaye</author><pubDate>Tue, 03 Nov 2009 09:07:39 GMT</pubDate><guid isPermaLink="false">NEW POST: A little bug on HistogramChartHelper.cs 20091103A</guid></item><item><title>NEW POST: OWC xml to MSChart</title><link>http://code.msdn.microsoft.com/mschart/Thread/View.aspx?ThreadId=2397</link><description>&lt;div class="wikidoc"&gt;
I'm not sure what you are trying to do here but if you want to import data, you'd first need to serialize it from the OWC. Chart1.XMLDATA should allow you to extract the data. You can then persist it to a file or stream and use that stream to feed the server via a webservice or web method. Once the server method executes, you can create code inside that method to bind to XML data in the regular way.&lt;br /&gt; &lt;br /&gt;Wouldn't it be easier to bind to the data file that OWC uses instead of trying to bind to the OWC object?&lt;br /&gt;
&lt;/div&gt;</description><author>Vapordan</author><pubDate>Thu, 29 Oct 2009 12:51:15 GMT</pubDate><guid isPermaLink="false">NEW POST: OWC xml to MSChart 20091029P</guid></item><item><title>NEW POST: Please my x64 Compatible</title><link>http://code.msdn.microsoft.com/mschart/Thread/View.aspx?ThreadId=2461</link><description>&lt;div class="wikidoc"&gt;
I've been running this on Windows 7 x64 and there are several pages that do not work because there is no 64-bit JET OLEDB provider.&lt;br /&gt;
&lt;/div&gt;</description><author>JoshuaChr</author><pubDate>Wed, 28 Oct 2009 16:22:32 GMT</pubDate><guid isPermaLink="false">NEW POST: Please my x64 Compatible 20091028P</guid></item><item><title>NEW POST: Aligning Shapes with Chart Areas</title><link>http://code.msdn.microsoft.com/mschart/Thread/View.aspx?ThreadId=2457</link><description>&lt;div class="wikidoc"&gt;
Hi,&lt;br /&gt; &lt;br /&gt;I am looking to draw a set of lines and shapes underneath a MSchart object. My problem is aligning the lines and shapes with the chart. I can access the Chart size (in pixels) and the ChartArea size (as a percentage of the Chart size), that is fine. But i can't access the exact length of the x-axis in pixels or percentage of the ChartArea. This proves problematic when the y-axis and its corresponding labels are constantly resizing.&lt;br /&gt; &lt;br /&gt;Any help would be greatly aprreciated,&lt;br /&gt;Thanks&lt;br /&gt;
&lt;/div&gt;</description><author>RubberDuckMW</author><pubDate>Wed, 28 Oct 2009 06:03:52 GMT</pubDate><guid isPermaLink="false">NEW POST: Aligning Shapes with Chart Areas 20091028A</guid></item><item><title>NEW POST: No Data Message?</title><link>http://code.msdn.microsoft.com/mschart/Thread/View.aspx?ThreadId=2431</link><description>&lt;div class="wikidoc"&gt;
The code below may be helpful.&lt;br /&gt; &lt;br /&gt;  Chart _ch;&lt;br /&gt; &lt;br /&gt;  NoDataWarning = true;&lt;br /&gt; &lt;br /&gt;   &lt;i&gt;ch.PostPaint += new EventHandler&amp;lt;ChartPaintEventArgs&amp;gt;(&lt;/i&gt;ch_PostPaint);&lt;br /&gt; &lt;br /&gt;  ...&lt;br /&gt; &lt;br /&gt; &lt;br /&gt;  void &lt;i&gt;ch&lt;/i&gt;PostPaint(object sender, ChartPaintEventArgs e)&lt;br /&gt;        {&lt;br /&gt;            if ((sender is Chart) &amp;amp;&amp;amp; NoDataWarning)&lt;br /&gt;            {&lt;br /&gt;                Chart chrt = (Chart)sender;&lt;br /&gt; &lt;br /&gt;                // Get Graphics object from chart&lt;br /&gt;                Graphics graph = e.ChartGraphics.Graphics;&lt;br /&gt; &lt;br /&gt;                StringFormat strFormat = new StringFormat();&lt;br /&gt;                strFormat.Alignment = StringAlignment.Center;&lt;br /&gt;                strFormat.LineAlignment = StringAlignment.Center;&lt;br /&gt;                graph.DrawString(&amp;quot;No data&amp;quot;, new Font(main.DefaultFont, main.DefaultFont.Style), Brushes.Black,&lt;br /&gt;                    new RectangleF(0, 0, chrt.Width, chrt.Height), strFormat);                              &lt;br /&gt;            }&lt;br /&gt; &lt;br /&gt;        }       &lt;br /&gt;
&lt;/div&gt;</description><author>tombalak</author><pubDate>Mon, 26 Oct 2009 09:29:24 GMT</pubDate><guid isPermaLink="false">NEW POST: No Data Message? 20091026A</guid></item><item><title>NEW POST: No Data Message?</title><link>http://code.msdn.microsoft.com/mschart/Thread/View.aspx?ThreadId=2431</link><description>&lt;div class="wikidoc"&gt;
What's the best way to display a message across the front of of a chart, in case no data points are loaded?  Sort of like a &amp;quot;This Page Intentionally Blank&amp;quot; type messge.  I don't see something in the API like setNoDataMessage().  If I did this manually, how best to stamp a bold title-like statement across the front of the chart?&lt;br /&gt; &lt;br /&gt;Thanks!&lt;br /&gt;
&lt;/div&gt;</description><author>bharring0107</author><pubDate>Thu, 22 Oct 2009 17:26:39 GMT</pubDate><guid isPermaLink="false">NEW POST: No Data Message? 20091022P</guid></item><item><title>NEW POST: OWC xml to MSChart</title><link>http://code.msdn.microsoft.com/mschart/Thread/View.aspx?ThreadId=2397</link><description>&lt;div class="wikidoc"&gt;
Hi,&lt;br /&gt; &lt;br /&gt;Is there any way to map/import xml generated from OWC to MSChart? I've searched the net in vain. If anyone has any idea on how this can be accomplished or if there is any easier means then I'd be glad if its shared.&lt;br /&gt; &lt;br /&gt;Regards&lt;br /&gt;
&lt;/div&gt;</description><author>rageit</author><pubDate>Wed, 14 Oct 2009 04:36:13 GMT</pubDate><guid isPermaLink="false">NEW POST: OWC xml to MSChart 20091014A</guid></item><item><title>NEW POST: Chart Series</title><link>http://code.msdn.microsoft.com/mschart/Thread/View.aspx?ThreadId=2369</link><description>&lt;div class="wikidoc"&gt;
in VB, How do i delete a series in a chart?&lt;br /&gt; &lt;br /&gt;examples i see call for .SeriesCollection.delete  but the chart object i have does not seem to have a '.SeresiCollection. method.   &lt;br /&gt; &lt;br /&gt;i want to do this&lt;br /&gt; &lt;br /&gt;MyChart.Series(SeriesName).delete  ( but no delete method exisit.  when i try 'dispose' i get strange erroes).  &lt;br /&gt; &lt;br /&gt;help :) !&lt;br /&gt;
&lt;/div&gt;</description><author>ccalisi</author><pubDate>Wed, 07 Oct 2009 17:34:43 GMT</pubDate><guid isPermaLink="false">NEW POST: Chart Series 20091007P</guid></item><item><title>NEW POST: how can I insert 2 markers (with image) in different series and in points with equal values</title><link>http://code.msdn.microsoft.com/mschart/Thread/View.aspx?ThreadId=2367</link><description>&lt;div class="wikidoc"&gt;
HI!!&lt;br /&gt; &lt;br /&gt;i&amp;#180;m using Microsoft ASP.NET CHART CONTROL:&lt;br /&gt; &lt;br /&gt;http://weblogs.asp.net/scottgu/archive/2008/11/24/new-asp-net-charting-control-lt-asp-chart-runat-quot-server-quot-gt.aspx&lt;br /&gt; &lt;br /&gt;how can I insert 2 markers (with image) in different series and in points with equal values. next to each other.&lt;br /&gt; &lt;br /&gt;??&lt;br /&gt; &lt;br /&gt;tnx..&lt;br /&gt;
&lt;/div&gt;</description><author>giovannidebona</author><pubDate>Wed, 07 Oct 2009 13:54:31 GMT</pubDate><guid isPermaLink="false">NEW POST: how can I insert 2 markers (with image) in different series and in points with equal values 20091007P</guid></item><item><title>NEW POST: Stacked 3D Pie Chart</title><link>http://code.msdn.microsoft.com/mschart/Thread/View.aspx?ThreadId=1852</link><description>&lt;div class="wikidoc"&gt;
I too would like to know how to create a stacked pie chart other than hacking two chart areas together.&lt;br /&gt;
&lt;/div&gt;</description><author>cmcginnis</author><pubDate>Mon, 05 Oct 2009 22:46:33 GMT</pubDate><guid isPermaLink="false">NEW POST: Stacked 3D Pie Chart 20091005P</guid></item></channel></rss>