<?xml version="1.0" encoding="UTF-8" ?>
<?xml-stylesheet type="text/xsl" href="http://blogs.msdn.com/utility/FeedStylesheets/rss.xsl" media="screen"?><rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" xmlns:wfw="http://wellformedweb.org/CommentAPI/"><channel><title>Data Visualization - All Comments</title><link>http://blogs.msdn.com/b/deliant/</link><description>A Blog from Delian Tchoparinov about data visualization controls.</description><dc:language>en-US</dc:language><generator>Telligent Evolution Platform Developer Build (Build: 5.6.50428.7875)</generator><item><title>re: Handling chart generated images using Chart Http Handler</title><link>http://blogs.msdn.com/b/deliant/archive/2008/12/02/managing-chart-generated-images-with-chart-image-handler.aspx#10393803</link><pubDate>Thu, 14 Feb 2013 21:23:22 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:10393803</guid><dc:creator>Elias Echeverri from CondosCafe.com</dc:creator><description>&lt;p&gt;I store images in RAM memory as follows and I do not have any issues with overwritting or file systems. You can see the web site in action at www.condoscafe.com. I use a lot of charts:&lt;/p&gt;
&lt;p&gt; &amp;nbsp;&amp;lt;appSettings&amp;gt;&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp;&amp;lt;!-- Set the Chart Web control to save the chart image to memory and to free that memory as soon as the image is server --&amp;gt;&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp;&amp;lt;add key=&amp;quot;ChartImageHandler&amp;quot; value=&amp;quot;storage=memory;deleteAfterServicing=true; WebDevServerUseConfigSettings=true;&amp;quot;/&amp;gt;&lt;/p&gt;
&lt;p&gt; &amp;nbsp;&amp;lt;/appSettings&amp;gt;&lt;/p&gt;
&lt;p&gt; &amp;lt;system.web&amp;gt;&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp;&amp;lt;!--&lt;/p&gt;
&lt;p&gt; Needed to debug in remote server&lt;/p&gt;
&lt;p&gt; --&amp;gt;&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp;&amp;lt;customErrors mode=&amp;quot;Off&amp;quot;/&amp;gt;&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp;&amp;lt;httpHandlers&amp;gt;&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;lt;add path=&amp;quot;ChartImg.axd&amp;quot; verb=&amp;quot;GET,HEAD,POST&amp;quot; type=&amp;quot;System.Web.UI.DataVisualization.Charting.ChartHttpHandler, System.Web.DataVisualization, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35&amp;quot; validate=&amp;quot;false&amp;quot;/&amp;gt;&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp;&amp;lt;/httpHandlers&amp;gt;&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp;&amp;lt;pages&amp;gt;&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;lt;controls&amp;gt;&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;lt;add tagPrefix=&amp;quot;asp&amp;quot; namespace=&amp;quot;System.Web.UI.DataVisualization.Charting&amp;quot; assembly=&amp;quot;System.Web.DataVisualization, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35&amp;quot;/&amp;gt;&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;lt;/controls&amp;gt;&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp;&amp;lt;/pages&amp;gt;&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp;&amp;lt;compilation debug=&amp;quot;true&amp;quot; strict=&amp;quot;false&amp;quot; explicit=&amp;quot;true&amp;quot; targetFramework=&amp;quot;4.0&amp;quot;&amp;gt;&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;lt;assemblies&amp;gt;&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;lt;add assembly=&amp;quot;System.Web.DataVisualization, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35&amp;quot;/&amp;gt;&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;lt;/assemblies&amp;gt;&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp;&amp;lt;/compilation&amp;gt;&lt;/p&gt;
&lt;p&gt; &amp;nbsp;&amp;lt;system.webServer&amp;gt;&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp;&amp;lt;defaultDocument&amp;gt;&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;lt;files/&amp;gt;&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp;&amp;lt;/defaultDocument&amp;gt;&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp;&amp;lt;handlers&amp;gt;&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;lt;remove name=&amp;quot;ChartImageHandler&amp;quot;/&amp;gt;&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;lt;add name=&amp;quot;ChartImageHandler&amp;quot; preCondition=&amp;quot;integratedMode&amp;quot; verb=&amp;quot;GET,HEAD,POST&amp;quot; path=&amp;quot;ChartImg.axd&amp;quot; type=&amp;quot;System.Web.UI.DataVisualization.Charting.ChartHttpHandler, System.Web.DataVisualization, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35&amp;quot;/&amp;gt;&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp;&amp;lt;/handlers&amp;gt;&lt;/p&gt;
&lt;p&gt; &amp;nbsp;&amp;lt;/system.webServer&amp;gt;&lt;/p&gt;
&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=10393803" width="1" height="1"&gt;</description></item><item><title>re: Handling chart generated images using Chart Http Handler</title><link>http://blogs.msdn.com/b/deliant/archive/2008/12/02/managing-chart-generated-images-with-chart-image-handler.aspx#10324973</link><pubDate>Thu, 28 Jun 2012 09:33:36 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:10324973</guid><dc:creator>SoniSp</dc:creator><description>&lt;p&gt;Hi,&lt;/p&gt;
&lt;p&gt;I am trying to use a network path for the images as I have a WebFarm which is loadBalanced using CISCO ACE appliance. The reason I am using a network shared folder is that at times the Chart does not show the PNG images.&lt;/p&gt;
&lt;p&gt;The problem with displaying the PNG images in the Web Farm comes when I had initially the web.config setting as shown below.&lt;/p&gt;
&lt;p&gt;&amp;lt;add key=&amp;quot;ChartImageHandler&amp;quot; value=&amp;quot;storage=file;timeout=10;dir=c:\TempImageFiles\;&amp;quot; /&amp;gt;&lt;/p&gt;
&lt;p&gt;So I used the network Shared path as per (&lt;a rel="nofollow" target="_new" href="http://blogs.msdn.com/b/deliant/archive/2008/12/02/managing-chart-generated-images-with-chart-image-handler.aspx"&gt;blogs.msdn.com/.../managing-chart-generated-images-with-chart-image-handler.aspx&lt;/a&gt;) , where I have FULL Permissions on EVERYONE, NETWORK Service. &lt;/p&gt;
&lt;p&gt;Below is my current setting for the Network shared folder path and I keep getting this error: Invalid temp directory in chart handler configuration&lt;/p&gt;
&lt;p&gt;&amp;lt;add key=&amp;quot;ChartImageHandler&amp;quot; value=&amp;quot;storage=file;timeout=10;dir=\\servername\TempImageFiles\;&amp;quot; /&amp;gt;&lt;/p&gt;
&lt;p&gt;Can someone help. Please reply to soni.sp@gmail.com &lt;/p&gt;
&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=10324973" width="1" height="1"&gt;</description></item><item><title>re: Welcome to my blog!</title><link>http://blogs.msdn.com/b/deliant/archive/2008/12/02/welcome-to-my-blog.aspx#10273297</link><pubDate>Mon, 27 Feb 2012 06:39:32 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:10273297</guid><dc:creator>malihe</dc:creator><description>&lt;p&gt;hi &lt;/p&gt;
&lt;p&gt;i use the chart control in my site.it works well in local host.&lt;/p&gt;
&lt;p&gt;but it doesnt work in main host.&lt;/p&gt;
&lt;p&gt;this is the error :&lt;/p&gt;
&lt;p&gt;No http handler was found for request type &amp;#39;GET&amp;#39;&lt;/p&gt;
&lt;p&gt;what i should do in web.config?&lt;/p&gt;
&lt;p&gt;i need ur help&lt;/p&gt;
&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=10273297" width="1" height="1"&gt;</description></item><item><title>re: Handling chart generated images using Chart Http Handler</title><link>http://blogs.msdn.com/b/deliant/archive/2008/12/02/managing-chart-generated-images-with-chart-image-handler.aspx#10271383</link><pubDate>Thu, 23 Feb 2012 09:08:19 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:10271383</guid><dc:creator>Tuomo Kämäräinen</dc:creator><description>&lt;p&gt;Removing &amp;quot;dir&amp;quot; solved my issue with missing folder. It doesn&amp;#39;t seem to be mandatory.&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp;&amp;lt;!--&amp;lt;add key=&amp;quot;ChartImageHandler&amp;quot; value=&amp;quot;storage=file;timeout=20;dir=c:\TempImageFiles\;&amp;quot;/&amp;gt;--&amp;gt;&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp;&amp;lt;add key=&amp;quot;ChartImageHandler&amp;quot; value=&amp;quot;storage=file;timeout=20;&amp;quot; /&amp;gt;&lt;/p&gt;
&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=10271383" width="1" height="1"&gt;</description></item><item><title>re: Handling chart generated images using Chart Http Handler</title><link>http://blogs.msdn.com/b/deliant/archive/2008/12/02/managing-chart-generated-images-with-chart-image-handler.aspx#10235697</link><pubDate>Thu, 10 Nov 2011 09:34:12 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:10235697</guid><dc:creator>spidy</dc:creator><description>&lt;p&gt;skeezmoe,&lt;/p&gt;
&lt;p&gt;You probably got your problem resolved but your dir attribute should be something like this&lt;/p&gt;
&lt;p&gt;dir=~/Images/Chart&lt;/p&gt;
&lt;p&gt;or you need to specify a full path.&lt;/p&gt;
&lt;p&gt;-sPidy&lt;/p&gt;
&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=10235697" width="1" height="1"&gt;</description></item><item><title>re: Handling chart generated images using Chart Http Handler</title><link>http://blogs.msdn.com/b/deliant/archive/2008/12/02/managing-chart-generated-images-with-chart-image-handler.aspx#10165191</link><pubDate>Tue, 17 May 2011 04:56:58 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:10165191</guid><dc:creator>skeezmoe</dc:creator><description>&lt;p&gt;I am trying to use a network path for the images:&lt;/p&gt;
&lt;p&gt;&amp;lt;add key=&amp;quot;ChartImageHandler&amp;quot; value=&amp;quot;storage=file;timeout=10;dir=\\servername\temp;&amp;quot; /&amp;gt;&lt;/p&gt;
&lt;p&gt;And I keep getting this error: Invalid temp directory in chart handler configuration&lt;/p&gt;
&lt;p&gt;Can someone help. Please reply to cenon@optusnet.com.au&lt;/p&gt;
&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=10165191" width="1" height="1"&gt;</description></item><item><title>re: Handling chart generated images using Chart Http Handler</title><link>http://blogs.msdn.com/b/deliant/archive/2008/12/02/managing-chart-generated-images-with-chart-image-handler.aspx#10116515</link><pubDate>Mon, 17 Jan 2011 11:01:38 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:10116515</guid><dc:creator>vinayakbaddi</dc:creator><description>&lt;p&gt;Hi,&lt;/p&gt;
&lt;p&gt;I want to do a Jquery POST and get a chart using renderControl (which will return HTML attributes) I have successfully done this on WEbforms, However the same with MVC give a empty image. The handler doesn&amp;#39;t perform the same in MVC2 3.5. I went near to 50 sites now. &lt;/p&gt;
&lt;p&gt;No solutions could resolve this.&lt;/p&gt;
&lt;p&gt;I can&amp;#39;t use base64encoding as IE6, 7 don&amp;#39;t support it.&lt;/p&gt;
&lt;p&gt;What I&amp;#39;m trying to do?&lt;/p&gt;
&lt;p&gt;I have few data parameteres to be sent (POST) to server and in response get the Chart image as &amp;lt;img&amp;gt; tag along with other attributes I will also append OTHER data all this to be done using JQUERY. No postbacks to be used. &lt;/p&gt;
&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=10116515" width="1" height="1"&gt;</description></item><item><title>re: Handling chart generated images using Chart Http Handler</title><link>http://blogs.msdn.com/b/deliant/archive/2008/12/02/managing-chart-generated-images-with-chart-image-handler.aspx#10096886</link><pubDate>Fri, 26 Nov 2010 07:01:00 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:10096886</guid><dc:creator>Ashok</dc:creator><description>&lt;p&gt;Well, I wanted to give some context of the problem.&lt;/p&gt;
&lt;p&gt;We are using .net3.5 framework , the ChartImageHandler section in web.config &amp;nbsp;is &lt;/p&gt;
&lt;p&gt;&amp;lt;add key=&amp;quot;ChartImageHandler&amp;quot; value=&amp;quot;storage=session;timeout=20;&amp;quot; /&amp;gt;&lt;/p&gt;
&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=10096886" width="1" height="1"&gt;</description></item><item><title>re: Handling chart generated images using Chart Http Handler</title><link>http://blogs.msdn.com/b/deliant/archive/2008/12/02/managing-chart-generated-images-with-chart-image-handler.aspx#10096881</link><pubDate>Fri, 26 Nov 2010 06:42:16 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:10096881</guid><dc:creator>Ashok</dc:creator><description>&lt;p&gt;Hi all,&lt;/p&gt;
&lt;p&gt;We have used Chart control in our web application and worked fine. Now we wanted to publish website to Windows Azure cloud environment. There these Chart contrls are giving out of memory exception.&lt;/p&gt;
&lt;p&gt;Can anybody please give suggessions/Solution?&lt;/p&gt;
&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=10096881" width="1" height="1"&gt;</description></item><item><title>re: Handling chart generated images using Chart Http Handler</title><link>http://blogs.msdn.com/b/deliant/archive/2008/12/02/managing-chart-generated-images-with-chart-image-handler.aspx#10088707</link><pubDate>Wed, 10 Nov 2010 10:19:44 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:10088707</guid><dc:creator>Sands</dc:creator><description>&lt;p&gt;Try this in your web.config file:&lt;/p&gt;
&lt;p&gt;&amp;lt;appSettings&amp;gt;&lt;/p&gt;
&lt;p&gt; &amp;lt;add key=&amp;quot;ChartImageHandler&amp;quot; value=&amp;quot;storage=session;timeout=20;&amp;quot; /&amp;gt;&lt;/p&gt;
&lt;p&gt;OR &lt;/p&gt;
&lt;p&gt;&amp;lt;add key=&amp;quot;ChartImageHandler&amp;quot; value=&amp;quot;storage=memory;timeout=20;&amp;quot; /&amp;gt;&lt;/p&gt;
&lt;p&gt; &amp;lt;/appSettings&amp;gt;&lt;/p&gt;
&lt;p&gt;Sands&lt;/p&gt;
&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=10088707" width="1" height="1"&gt;</description></item></channel></rss>