﻿<?xml version="1.0" encoding="utf-8"?><rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:wfw="http://wellformedweb.org/CommentAPI/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:sy="http://purl.org/rss/1.0/modules/syndication/" xmlns:media="http://search.yahoo.com/mrss/" xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" version="2.0"><channel><title>Intersoft Community - WebGrid Enterprise - help refresh chart </title><link>http://www.intersoftsolutions.com/Community/WebGrid/help-refresh-chart/</link><description /><generator>http://www.intersoftsolutions.com</generator><language>en</language><copyright>Copyright 2002 - 2015 Intersoft Solutions Corp. All rights reserved.</copyright><ttl>60</ttl><item><title>help refresh chart </title><link>http://www.intersoftsolutions.com/Community/WebGrid/help-refresh-chart/</link><pubDate>Mon, 06 Sep 2010 10:37:51 GMT</pubDate><dc:creator>handy@intersoftpt.com</dc:creator><category>hight</category><description>&lt;p&gt;Hi Vantu,&lt;/p&gt;&lt;p&gt;I am sorry but please be more detail. Do you read my previous posted? I need to clarify the scenario before can suggest you something.&lt;/p&gt;
&lt;p&gt;Regards,&lt;br /&gt;Handy&lt;/p&gt;</description></item><item><title>help refresh chart </title><link>http://www.intersoftsolutions.com/Community/WebGrid/help-refresh-chart/</link><pubDate>Mon, 06 Sep 2010 06:06:33 GMT</pubDate><dc:creator>blacktiger</dc:creator><category>hight</category><description>&lt;p&gt;@Yudi, Handy Surya&lt;span class="postusername"&gt;&lt;span class="postuserrole" /&gt;&lt;/span&gt;&lt;/p&gt;&lt;p&gt;Can you see my question again?&lt;/p&gt;
&lt;p&gt;Regards,&lt;/p&gt;
&lt;p&gt;Vantu&lt;br /&gt;&lt;/p&gt;</description></item><item><title>help refresh chart </title><link>http://www.intersoftsolutions.com/Community/WebGrid/help-refresh-chart/</link><pubDate>Wed, 01 Sep 2010 06:06:13 GMT</pubDate><dc:creator>handy@intersoftpt.com</dc:creator><category>hight</category><description>&lt;p&gt;Hello,&lt;/p&gt;&lt;p&gt;I need to confirm something about your scenario. Is your scenario using only 1 WebGrid?&lt;br /&gt;If yes, normally, if you use WebGrid1.RefreshAll(), WebGrid would refresh include the charting data.&lt;br /&gt;If this also does not help, please try to use below code.&lt;/p&gt;
&lt;p /&gt;&lt;pre&gt;grid.RefreshAll();
window.setTimeout(function(){
          grid.ChartContainer.innerHTML = "";
          InitializeWGChart(grid.Id);}, 1000);&lt;/pre&gt;
&lt;p&gt;Regards,&lt;br /&gt;Handy&lt;/p&gt;
&lt;p /&gt;</description></item><item><title>help refresh chart </title><link>http://www.intersoftsolutions.com/Community/WebGrid/help-refresh-chart/</link><pubDate>Wed, 01 Sep 2010 02:16:33 GMT</pubDate><dc:creator>yudi</dc:creator><category>hight</category><description>&lt;p&gt;&lt;span style="font-family: 'segoe ui','sans-serif'; color: #1f497d; font-size: 9pt;"&gt;I tried to reproduce the problem in our local test by creating a simple test page that has structure similar to the one that shown in your attached screenshot and then tried to refresh each chart. My efforts were not successful – everything worked smoothly and I can have each chart refreshed respectively.&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span style="font-family: 'segoe ui','sans-serif'; color: #1f497d; font-size: 9pt;"&gt;I modified Chart_FirstExperience.aspx reference sample file and add three chart-grid to the form page. I also add four html input buttons that are used to trigger/invoke ChartInteractiveUI.Refresh() method.&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span style="font-family: 'segoe ui','sans-serif'; color: #1f497d; font-size: 9pt;"&gt;I’m willing to advice you further but in order to do so I would need you to elaborate on your specific scenario and possibly give us a running simple sample that replicates the issue or step-by-step guide that can be used to observe the problematic behavior.&lt;/span&gt;&lt;/p&gt;</description></item><item><title>help refresh chart </title><link>http://www.intersoftsolutions.com/Community/WebGrid/help-refresh-chart/</link><pubDate>Sat, 28 Aug 2010 04:16:31 GMT</pubDate><dc:creator>blacktiger</dc:creator><category>hight</category><description>Hi everybody &lt;br /&gt;&lt;p&gt;I have dashboard same picture attach, use chart as a usercontrol.&lt;br /&gt;&lt;/p&gt;
&lt;p&gt;If I edit form 1 ( column chart to pie chart) --&amp;gt; refresh in form 1, (form 1 is pie chart now). But when I edit form 2 but it not refresh in form 2 , and it still refresh form 1. And I have to press F5 to load page. The result don't change from 1 and change form 2. I want to refresh each chart. &lt;br /&gt;&lt;/p&gt;
&lt;p&gt;Please help me&lt;/p&gt;
&lt;p&gt;Thanks,&lt;/p&gt;
&lt;p&gt; vantu&lt;br /&gt;&lt;/p&gt;
&lt;p&gt;&amp;lt;script type ="text/javascript" &amp;gt;&lt;br /&gt;&lt;strong&gt;////code javascript&lt;/strong&gt;&lt;br /&gt;function refreshChart()&lt;br /&gt;{ var grid = ISGetObject("WebGrid1");&lt;br /&gt; grid.ChartInteractiveUI.RefreshChart();&lt;br /&gt; &lt;br /&gt;}&lt;br /&gt;&amp;lt;/script&amp;gt;&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;/// code close and refresh form &lt;/strong&gt;&lt;br /&gt;&lt;/p&gt;
&lt;p&gt;string script = @"&amp;lt;script language='javascript'&amp;gt;&lt;br /&gt;  if (self.opener!=null &amp;&amp; self.opener.document!=null &amp;&amp; self.opener.document.forms[0]!=null)&lt;br /&gt;  {&lt;br /&gt;   self.opener.refreshChart('" &amp;#43; Instance.Id &amp;#43; @"');&lt;br /&gt;   self.close();&lt;br /&gt;  }&lt;br /&gt; &amp;lt;/script&amp;gt;";&lt;br /&gt; Response.Write(script);&lt;br /&gt;&lt;/p&gt;
&lt;p&gt;"Instance.Id" this is id of the form need edit&lt;br /&gt;&lt;/p&gt;</description></item></channel></rss>