<?xml version="1.0"?><?xml-stylesheet type="text/xsl" href="/rss.xsl"?><rss version="2.0"><channel><title>highcharts Discussions Rss Feed</title><link>http://highcharts.codeplex.com/discussions</link><description>highcharts Discussions Rss Description</description><item><title>New Post: Pie chart not working.</title><link>http://highcharts.codeplex.com/discussions/352538</link><description>&lt;div style="line-height: normal;"&gt;Are you using MVC or ASP.Net version?&lt;br /&gt;
&lt;/div&gt;</description><author>paulovich</author><pubDate>Fri, 24 May 2013 16:52:34 GMT</pubDate><guid isPermaLink="false">New Post: Pie chart not working. 20130524045234P</guid></item><item><title>New Post: Pie chart not working.</title><link>http://highcharts.codeplex.com/discussions/352538</link><description>&lt;div style="line-height: normal;"&gt;Hei, so you had solved it? Can you share it in here. Appreciate it very much. Thank you.&lt;br /&gt;
&lt;/div&gt;</description><author>hueywoen</author><pubDate>Wed, 22 May 2013 09:47:23 GMT</pubDate><guid isPermaLink="false">New Post: Pie chart not working. 20130522094723A</guid></item><item><title>New Post: Reg how to bind data table fields to high charts</title><link>http://highcharts.codeplex.com/discussions/439074</link><description>&lt;div style="line-height: normal;"&gt;hi every one...&lt;br /&gt;
&lt;br /&gt;
 am using high charts in my application since last two days am trying to how to bind datatable values to high charts.. i didnt get any solution.. pls any one help me for this  i need this urgent...&lt;br /&gt;
step by step process i want&lt;br /&gt;
&lt;/div&gt;</description><author>dasamsandeep</author><pubDate>Thu, 04 Apr 2013 10:45:58 GMT</pubDate><guid isPermaLink="false">New Post: Reg how to bind data table fields to high charts 20130404104558A</guid></item><item><title>New Post: Highcharts Tooltip</title><link>http://highcharts.codeplex.com/discussions/438401</link><description>&lt;div style="line-height: normal;"&gt;Hi all,&lt;br /&gt;
&lt;br /&gt;
how can i use the Highcharts Tooltip (that i really like) for other controller for example asp table?&lt;br /&gt;
i wanna pop the tooltip every-time the mouse hover one of the table cells and i don't want to deal with the javascript code (only the c# code) is there any way?&lt;br /&gt;
&lt;/div&gt;</description><author>mole116</author><pubDate>Fri, 29 Mar 2013 01:14:20 GMT</pubDate><guid isPermaLink="false">New Post: Highcharts Tooltip 20130329011420A</guid></item><item><title>New Post: How to give hyperlink in HTML 5 Chart in ireport ?</title><link>http://highcharts.codeplex.com/discussions/437180</link><description>&lt;div style="line-height: normal;"&gt;I want to give hyperlink in HTML 5 Chart, so that If I click anywhere in the chart area , that should be redirected to the different report. &lt;br /&gt;
&lt;br /&gt;
How can I achieve this in iReport?&lt;br /&gt;
&lt;br /&gt;
Thanks,&lt;br /&gt;
&lt;/div&gt;</description><author>sj7</author><pubDate>Tue, 19 Mar 2013 12:00:40 GMT</pubDate><guid isPermaLink="false">New Post: How to give hyperlink in HTML 5 Chart in ireport ? 20130319120040P</guid></item><item><title>New Post: Unable to populate series name while plotting line graph.</title><link>http://highcharts.codeplex.com/discussions/436264</link><description>&lt;div style="line-height: normal;"&gt;Hi,&lt;br /&gt;
I have a json object in the below format.&lt;br /&gt;
[{&amp;quot;articleName&amp;quot;:&amp;quot;Spring&amp;quot;,&amp;quot;articleQuantity&amp;quot;:[32,20,53,42,28,18,41,72,66,90,48,28]},{&amp;quot;articleName&amp;quot;:&amp;quot;Struts&amp;quot;,&amp;quot;articleQuantity&amp;quot;:[55,27,60,36,46,90,15,22,51,48,72,80]},{&amp;quot;articleName&amp;quot;:&amp;quot;Hibernate&amp;quot;,&amp;quot;articleQuantity&amp;quot;:[33,24,64,72,15,50,80,92,20,18,6,88]}]&lt;br /&gt;
 I have written the below logic and its working absolutely fine.&lt;br /&gt;
&lt;br /&gt;
 series:[&lt;br /&gt;
&lt;pre&gt;&lt;code&gt;                    {
                        name:'Spring',
                        data: []
                    },
                    {
                        name:'Struts',
                        data: []
                    },
                    {
                        name:'Hibernate',
                        data: []
                    }        
            ]



},
function requestData() {
  $.ajax({
      type: &amp;quot;GET&amp;quot;,
      url: &amp;quot;graph.html&amp;quot;,
          success: function(response){
              var chartData=[];

        for(var i=0;i&amp;lt;=pointSpr.length;i++){
            chartData=[];   
             $.each(pointSpr[i].articleQuantity, function(k, v){
                        chartData.push(v);
                    });

          chart.series[i].setData(chartData);

        }
          },
         error: function(e){
                  alert('Error: ' + e);

              }


  })
}
);&lt;/code&gt;&lt;/pre&gt;

});&lt;br /&gt;
&lt;br /&gt;
});&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
But my problem is, if you look at the series name i,e Spring ,Struts and Hibernate, its all hard coded and i am want this thing to be dynamically taken instead of hard coding. I am using Spring MVC and HighCharts.Kindly help me out. Thanks in advance.&lt;br /&gt;
&lt;/div&gt;</description><author>madhukanth2005</author><pubDate>Tue, 12 Mar 2013 08:51:48 GMT</pubDate><guid isPermaLink="false">New Post: Unable to populate series name while plotting line graph. 20130312085148A</guid></item><item><title>New Post: Help:Problem with line graph</title><link>http://highcharts.codeplex.com/discussions/433219</link><description>&lt;div style="line-height: normal;"&gt;Hello everyone I'm from Peru, I have searched a lot on the forums but have not given me the solution.&lt;br /&gt;
&lt;br /&gt;
Supposedly everything is fine in my code to generate a line graph but does not generate the chart.&lt;br /&gt;
&lt;br /&gt;
I leave my code to see if help me please, something must be wrong.&lt;br /&gt;
&lt;br /&gt;
Thank you very much.&lt;br /&gt;
&lt;pre&gt;&lt;code&gt;&amp;lt;%@ Page Language=&amp;quot;vb&amp;quot; AutoEventWireup=&amp;quot;false&amp;quot; CodeBehind=&amp;quot;WebForm1.aspx.vb&amp;quot; Inherits=&amp;quot;WebApplication1.WebForm1&amp;quot; %&amp;gt;

&amp;lt;!DOCTYPE html PUBLIC &amp;quot;-//W3C//DTD XHTML 1.0 Transitional//EN&amp;quot; &amp;quot;http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd&amp;quot;&amp;gt;

&amp;lt;html xmlns=&amp;quot;http://www.w3.org/1999/xhtml&amp;quot;&amp;gt;
&amp;lt;head runat=&amp;quot;server&amp;quot;&amp;gt;
    &amp;lt;title&amp;gt;HIGHCHARTS&amp;lt;/title&amp;gt;
    &amp;lt;script type=&amp;quot;text/javascript&amp;quot; src=&amp;quot;http://ajax.googleapis.com/ajax/libs/jquery/1.8.2/jquery.min.js&amp;quot;&amp;gt;&amp;lt;/script&amp;gt;
    &amp;lt;script src=&amp;quot;http://code.highcharts.com/highcharts.js&amp;quot; type=&amp;quot;text/javascript&amp;quot;&amp;gt;&amp;lt;/script&amp;gt;
    &amp;lt;script src=&amp;quot;https://raw.github.com/douglascrockford/JSON-js/master/json2.js&amp;quot; type=&amp;quot;text/javascript&amp;quot;&amp;gt;&amp;lt;/script&amp;gt;
    &amp;lt;script type=&amp;quot;text/javascript&amp;quot;&amp;gt;
        $(document).ready(function () {
            var options = {
                chart: {
                    renderTo: 'container',
                    defaultSeriesType: 'line'
                },
                title: {},
                xAxis: {},
                yAxis: {},
                series: []
            };

            $.ajax({
                type: &amp;quot;POST&amp;quot;,
                dataType: &amp;quot;json&amp;quot;,
                data: &amp;quot;{}&amp;quot;,
                contentType: &amp;quot;application/json; charset=utf-8&amp;quot;,
                url: &amp;quot;WebForm1.aspx/getData&amp;quot;,
                success: function (items) {

                    var obj = eval(items.d);

                    var series2 = { data: [] };

                    $.each(obj, function (index, value) {

                        series2.data.push(parseFloat(value));

                    });

                    options.series.push(series2);
                  
                },
                cache: false,
                error: function (XMLHttpRequest, textStatus, errorThrown) { alert(errorThrown); }
            });

            chart = new Highcharts.Chart(options);
        });
    &amp;lt;/script&amp;gt;
&amp;lt;/head&amp;gt;
&amp;lt;body&amp;gt;
    
    &amp;lt;div id=&amp;quot;container&amp;quot; style=&amp;quot;width: 800px; height: 400px; margin: 0 auto&amp;quot;&amp;gt;
    
    &amp;lt;/div&amp;gt;
  
&amp;lt;/body&amp;gt;
&amp;lt;/html&amp;gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;pre&gt;&lt;code&gt;Imports System.Data
Imports System.Data.SqlClient
Imports System.Configuration
Imports System.Web.Services
Imports Newtonsoft.Json
Class WebForm1
    Inherits System.Web.UI.Page

    &amp;lt;WebMethod(EnableSession:=True)&amp;gt; _
    Public Shared Function getData() As String

        Dim cn As New SqlConnection(&amp;quot;Data source=.;initial catalog=Prueba;uid=sa;pwd=.&amp;quot;)
        Dim cmd As New SqlCommand(&amp;quot;select * from data&amp;quot;, cn)
        cn.Open()
        Dim dr As SqlDataReader
        dr = cmd.ExecuteReader

        Dim data As List(Of ArrayList) = New List(Of ArrayList)

        While dr.Read
            Dim a As New ArrayList
            a.Add(dr(0))
            data.Add(a)
        End While


        Dim str As String = JsonConvert.SerializeObject(data)

        Return str
__//RETURN [[15.00],[42.00],[100.00],[18.00],[16.00],[13.00],[18.00],[57.00],[90.00],[95.00],[96.00],[120.00]]__
    End Function
End Class
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;</description><author>Ozil07</author><pubDate>Fri, 15 Feb 2013 02:07:21 GMT</pubDate><guid isPermaLink="false">New Post: Help:Problem with line graph 20130215020721A</guid></item><item><title>New Post: Not able to plot the points more than 1400</title><link>http://highcharts.codeplex.com/discussions/431232</link><description>&lt;div style="line-height: normal;"&gt;
&lt;p&gt;Hi,&amp;nbsp;&lt;/p&gt;
&lt;p&gt;I am trying to plot the daily price for about 5 years. Points are passed to the charts correctly but chart is not showing the line. If i am ploting for less than 1400, then it is working fine. In the view source of the page. i can see all the points.&lt;/p&gt;
&lt;p&gt;can you help what be the issue in that ?&lt;/p&gt;
&lt;p&gt;with regards&lt;/p&gt;
&lt;p&gt;Sundeep Rai&lt;/p&gt;
&lt;/div&gt;</description><author>sundeepkr</author><pubDate>Tue, 29 Jan 2013 10:26:04 GMT</pubDate><guid isPermaLink="false">New Post: Not able to plot the points more than 1400 20130129102604A</guid></item><item><title>New Post: PostBack Issue not displaying a pie chart.</title><link>http://highcharts.codeplex.com/discussions/430790</link><description>&lt;div style="line-height: normal;"&gt;
&lt;p&gt;Hello there:&lt;/p&gt;
&lt;p&gt;First of all i like to congratulate to developrs who made this great solution. Thanks a lot.&amp;nbsp;&lt;/p&gt;
&lt;p&gt;Second i followed the example to display a pie chart successfully, it loads correctly and thats ok. After that i've deployed the same code to display ina web page that is child of a master page.&lt;/p&gt;
&lt;p&gt;when it loads the first time(is not postback), it diplays correctly, a pie chart with its series, and whole colors. but when i raise a postback event (in this example a dropdown_selectedindexchanged event) i load new data to the chart and then the chart
 only displays its series, without a pie&amp;nbsp;inside it. (i mean the circle with all its slices).&lt;/p&gt;
&lt;p&gt;i've tried with an update panel, not worked. then with a Place holder adding a new PieChart control to it, also not worked.&lt;/p&gt;
&lt;p&gt;if anybody have a functional solutions i'll appreciate it.&lt;/p&gt;
&lt;p&gt;P.D. sorry for my english, i'm a bit rusty.&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;/div&gt;</description><author>ricky1205</author><pubDate>Thu, 24 Jan 2013 21:25:29 GMT</pubDate><guid isPermaLink="false">New Post: PostBack Issue not displaying a pie chart. 20130124092529P</guid></item><item><title>New Post: Sample 08 AJAX Data Source</title><link>http://highcharts.codeplex.com/discussions/430223</link><description>&lt;div style="line-height: normal;"&gt;
&lt;p&gt;Hi, I was trying to display datetime of the system on X-Axis. Which I couldn't do it. I don't even see an option to have the datetime for xaxis. Could some once guide me on this plz.&amp;nbsp;&lt;/p&gt;
&lt;p&gt;thanks,&lt;/p&gt;
&lt;p&gt;ramakrishna&lt;/p&gt;
&lt;/div&gt;</description><author>krishnaramuu</author><pubDate>Mon, 21 Jan 2013 02:25:16 GMT</pubDate><guid isPermaLink="false">New Post: Sample 08 AJAX Data Source 20130121022516A</guid></item><item><title>New Post: Can anyone provide me with a working example using MVC C# ASPX</title><link>http://highcharts.codeplex.com/discussions/429366</link><description>&lt;div style="line-height: normal;"&gt;
&lt;p&gt;I published tomorow a demo website with MVC implemetation.&lt;br&gt;
Please download a latest version and apreciate the solution HighchartsMVC.&amp;nbsp;&lt;/p&gt;
&lt;/div&gt;</description><author>paulovich</author><pubDate>Mon, 14 Jan 2013 17:14:59 GMT</pubDate><guid isPermaLink="false">New Post: Can anyone provide me with a working example using MVC C# ASPX 20130114051459P</guid></item><item><title>New Post: Can anyone provide me with a working example using MVC C# ASPX</title><link>http://highcharts.codeplex.com/discussions/429366</link><description>&lt;div style="line-height: normal;"&gt;
&lt;div&gt;
&lt;p&gt;&lt;span style="font-size:11.0pt; font-family:"&gt;fjohnson&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span style="font-size:11.0pt; font-family:"&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span style="font-size:11.0pt; font-family:"&gt;I’ve had this when I don’t include the following in my page. I use ASP.NET with code behind and a Master Page. The following line is in the &amp;lt;head&amp;gt;&amp;lt;/head&amp;gt; section of the Master Page. Try that. I hope this helps.&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span style="font-size:11.0pt; font-family:"&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span style="font-size:11.0pt; font-family:"&gt;Ted&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span style="font-size:11.0pt; font-family:"&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p style="text-autospace:none"&gt;&lt;span style="font-size:9.5pt; font-family:Consolas"&gt;&lt;span style="color:darkgreen"&gt;&amp;lt;!-- scripts obrigatórios --&amp;gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p style="text-autospace:none"&gt;&lt;span style="font-size:9.5pt; font-family:Consolas"&gt;&lt;span style="color:blue"&gt;&amp;lt;&lt;/span&gt;&lt;span style="color:maroon"&gt;script&lt;/span&gt;
&lt;span style="color:red"&gt;src&lt;/span&gt;&lt;span style="color:blue"&gt;=&amp;quot;&lt;a href="http://ajax.googleapis.com/ajax/libs/jquery/1.3.2/jquery.min.js"&gt;http://ajax.googleapis.com/ajax/libs/jquery/1.3.2/jquery.min.js&lt;/a&gt;&amp;quot;&lt;/span&gt;
&lt;span style="color:red"&gt;type&lt;/span&gt;&lt;span style="color:blue"&gt;=&amp;quot;text/javascript&amp;quot;&amp;gt;&amp;lt;/&lt;/span&gt;&lt;span style="color:maroon"&gt;script&lt;/span&gt;&lt;span style="color:blue"&gt;&amp;gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p style="text-autospace:none"&gt;&lt;span style="font-size:9.5pt; font-family:Consolas"&gt;&lt;span style="color:darkgreen"&gt;&amp;lt;!-- fim dos scripts obrigatórios --&amp;gt;&lt;/span&gt;
&lt;/span&gt;&lt;/p&gt;
&lt;p style="text-autospace:none"&gt;&lt;span style="font-size:9.5pt; font-family:Consolas"&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span style="font-size:11.0pt; font-family:"&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span style="font-size:11.0pt; font-family:"&gt;&lt;/span&gt;&lt;/p&gt;
&lt;div&gt;
&lt;div style="border:none; border-top:solid #B5C4DF 1.0pt; padding:3.0pt 0in 0in 0in"&gt;
&lt;p&gt;&lt;b&gt;&lt;span style="font-size:10.0pt; font-family:"&gt;From:&lt;/span&gt;&lt;/b&gt;&lt;span style="font-size:10.0pt; font-family:"&gt; fjohnson [email removed]
&lt;br&gt;
&lt;b&gt;Sent:&lt;/b&gt; Friday, January 11, 2013 9:23 PM&lt;br&gt;
&lt;b&gt;To:&lt;/b&gt; tforsman@ix.netcom.com&lt;br&gt;
&lt;b&gt;Subject:&lt;/b&gt; Can anyone provide me with a working example using MVC C# ASPX [highcharts:429366]&lt;/span&gt;&lt;/p&gt;
&lt;/div&gt;
&lt;/div&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;&lt;span style="font-size:9.0pt; font-family:"&gt;From: fjohnson&lt;/span&gt;&lt;/p&gt;
&lt;div id="ThreadNotificationPostBody" style="margin-bottom:24.0pt"&gt;
&lt;p&gt;&lt;span style="font-size:9.0pt; font-family:"&gt;I tried the example but im missing something because nothing shows up? The links to the examples do not work. So if anyone has any ideas i'd appreciate it.
&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span style="font-size:9.0pt; font-family:"&gt;&lt;/span&gt;&lt;/p&gt;
&lt;/div&gt;
&lt;/div&gt;
&lt;/div&gt;</description><author>tjforsman</author><pubDate>Sat, 12 Jan 2013 16:15:14 GMT</pubDate><guid isPermaLink="false">New Post: Can anyone provide me with a working example using MVC C# ASPX 20130112041514P</guid></item><item><title>New Post: Can anyone provide me with a working example using MVC C# ASPX</title><link>http://highcharts.codeplex.com/discussions/429366</link><description>&lt;div style="line-height: normal;"&gt;
&lt;p&gt;I tried the example but im missing something because nothing shows up? &amp;nbsp;The links to the examples do not work. &amp;nbsp;So if anyone has any ideas i'd appreciate it. &amp;nbsp;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;/div&gt;</description><author>fjohnson</author><pubDate>Sat, 12 Jan 2013 05:22:35 GMT</pubDate><guid isPermaLink="false">New Post: Can anyone provide me with a working example using MVC C# ASPX 20130112052235A</guid></item><item><title>New Post: Combo Dual Axis</title><link>http://highcharts.codeplex.com/discussions/404396</link><description>&lt;div style="line-height: normal;"&gt;
&lt;p&gt;Can someone provide an example of how to create a combo dual axis report using highcharts.net.&lt;/p&gt;
&lt;p&gt;Here is what I would like to create: http://www.highcharts.com/demo/combo-dual-axes&lt;/p&gt;
&lt;p&gt;Thank you,&lt;/p&gt;
&lt;p&gt;David&lt;/p&gt;
&lt;/div&gt;</description><author>David_H</author><pubDate>Fri, 23 Nov 2012 22:17:20 GMT</pubDate><guid isPermaLink="false">New Post: Combo Dual Axis 20121123101720P</guid></item><item><title>New Post: Data labels</title><link>http://highcharts.codeplex.com/discussions/403967</link><description>&lt;div style="line-height: normal;"&gt;
&lt;p&gt;Hello,&lt;/p&gt;
&lt;p&gt;Trying to add data labels so they appear for the series values.&lt;/p&gt;
&lt;p&gt;Can someone provide an example in vb or c# on how to turn on the labels?&lt;/p&gt;
&lt;p&gt;Thank you.&lt;/p&gt;
&lt;p&gt;David&lt;/p&gt;
&lt;/div&gt;</description><author>David_H</author><pubDate>Tue, 20 Nov 2012 16:01:15 GMT</pubDate><guid isPermaLink="false">New Post: Data labels 20121120040115P</guid></item><item><title>New Post: Scrollbar like HighStock charts</title><link>http://highcharts.codeplex.com/discussions/402365</link><description>&lt;div style="line-height: normal;"&gt;
&lt;p&gt;Can we add scrollbar like highstock charts?&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;like in jquery&lt;/p&gt;
&lt;p&gt;scrollbar :{ &amp;quot;enable&amp;quot;:true }&lt;/p&gt;
&lt;/div&gt;</description><author>jayle_m</author><pubDate>Thu, 08 Nov 2012 10:03:12 GMT</pubDate><guid isPermaLink="false">New Post: Scrollbar like HighStock charts 20121108100312A</guid></item><item><title>New Post: Problem adding Series to diferentes yAxis, the last serie  display the Values of the first serie</title><link>http://highcharts.codeplex.com/discussions/400153</link><description>&lt;div style="line-height: normal;"&gt;
&lt;p&gt;Hi,&lt;/p&gt;
&lt;p&gt;I'am trying to add diferent series to diferent YAxis.&lt;/p&gt;
&lt;p&gt;On&amp;nbsp;the second Serie i have configured Serie.yAxis=1.&lt;/p&gt;
&lt;p&gt;The chart appears the two Series, but with the same Data, Serie.yAxis = 1 has the values of the first serie.&lt;/p&gt;
&lt;p&gt;If&amp;nbsp;I add a&amp;nbsp;third series with yAxis=1, the second&amp;nbsp;appears the correct values, but the third&amp;nbsp;appears&amp;nbsp;the values of the first.&amp;nbsp;&lt;/p&gt;
&lt;p&gt;Who can&amp;nbsp;i fix this?&lt;/p&gt;
&lt;p&gt;Best regards,&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;/div&gt;</description><author>pcarreiro</author><pubDate>Sat, 20 Oct 2012 16:47:02 GMT</pubDate><guid isPermaLink="false">New Post: Problem adding Series to diferentes yAxis, the last serie  display the Values of the first serie 20121020044702P</guid></item><item><title>New Post: CallBack Panel</title><link>http://highcharts.codeplex.com/discussions/399899</link><description>&lt;div style="line-height: normal;"&gt;
&lt;p&gt;Hi,&lt;/p&gt;
&lt;p&gt;Can anyone post an complete example of chart update by callback panel&lt;/p&gt;
&lt;p&gt;Thanks,&lt;/p&gt;
&lt;/div&gt;</description><author>pcarreiro</author><pubDate>Thu, 18 Oct 2012 12:51:55 GMT</pubDate><guid isPermaLink="false">New Post: CallBack Panel 20121018125155P</guid></item><item><title>New Post: CallBack Panel</title><link>http://highcharts.codeplex.com/discussions/399899</link><description>&lt;div style="line-height: normal;"&gt;
&lt;p&gt;Hi,&lt;/p&gt;
&lt;p&gt;Can anyone post an complete example of chart update by callback panel&lt;/p&gt;
&lt;p&gt;Thanks,&lt;/p&gt;
&lt;/div&gt;</description><author>pcarreiro</author><pubDate>Thu, 18 Oct 2012 12:51:55 GMT</pubDate><guid isPermaLink="false">New Post: CallBack Panel 20121018125155P</guid></item><item><title>New Post: chart not displaying, but data is there</title><link>http://highcharts.codeplex.com/discussions/359497</link><description>&lt;div style="line-height: normal;"&gt;&lt;p&gt;I found the same problem with&amp;nbsp;jquery-1.8.0; the version of jquery under 1.7.2 works well.&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;&lt;/div&gt;</description><author>rqg0717</author><pubDate>Wed, 17 Oct 2012 17:01:16 GMT</pubDate><guid isPermaLink="false">New Post: chart not displaying, but data is there 20121017050116P</guid></item></channel></rss>