Re: Highcharts - updating chart with data

2011-11-19 Thread Rob
Hi, I haven't checked in the changes yet. He's the code for the HighCharts.gwt.xml: - module public path=public / inherits name=org.moxieapps.gwt.highcharts.Highcharts/ script src=gwtcx/charts/highcharts/javascript/ jquery-1.5.2.min.js / script

Re: Highcharts - updating chart with data

2011-11-17 Thread Darren Salomons
Hi Rob, I see your demo on the site with highcharts but I don't see it in the code on googlecode. Is there a different codebase that you are working on for the highcharts integration? Thanks! Darren -- You received this message because you are subscribed to the Google Groups Google Web

Re: Highcharts - updating chart with data

2011-11-07 Thread George Agiasoglou
Hi Rob, I am aware of the wrappers for a number of charting libraries for gwt, however, I would like my app to remain decoupled of them and not to integrate any libraries to it, because the charts will be provided by another mechanism. So what I would like to be doing is via JSNI embed a div

RE: Highcharts - updating chart with data

2011-11-07 Thread Armishev, Sergey
Subject: Re: Highcharts - updating chart with data Hi Rob, I am aware of the wrappers for a number of charting libraries for gwt, however, I would like my app to remain decoupled of them and not to integrate any libraries to it, because the charts will be provided by another mechanism. So what I

Re: Highcharts - updating chart with data

2011-11-07 Thread George Agiasoglou
Thank you for your suggestion, but this is not what I need. Let me give you an example, I have data and graphs in google spreadsheets and I publish them as interactive or as images. Publishing the charts as images is simple, I just create a gwt Image and pass in a url. My problem is when

RE: Highcharts - updating chart with data

2011-11-07 Thread Armishev, Sergey
Of George Agiasoglou Sent: Monday, November 07, 2011 9:32 AM To: google-web-toolkit@googlegroups.com Subject: Re: Highcharts - updating chart with data Thank you for your suggestion, but this is not what I need. Let me give you an example, I have data and graphs in google spreadsheets and I publish

Re: Highcharts - updating chart with data

2011-11-07 Thread George Agiasoglou
Yes indeed, I have a problem because the ui is agnostic of the library that is going to use to generate the chart. For instance, this is the script tag published from a google spreadsheet: script type=text/javascript src=//ajax.googleapis.com/ajax/static/m odules/gviz/1.0/chart.js

Re: Highcharts - updating chart with data

2011-11-06 Thread Rob
Hi, There is a gwt wrapper for HighCharts. - http://www.moxiegroup.com/moxieapps/gwt-highcharts/ Check out this demo that uses gwt-highcharts: - http://gwt-cx.com/serendipity/Serendipity.html Click on the Dashboards menu item. Cheers Rob http://code.google.com/p/gwt-cx/ On Nov 5, 2:53 am,

Re: Highcharts - updating chart with data

2011-11-04 Thread George Agiasoglou
Hi there, I am interested in using Highcharts in my app, how do you use the above code? I tried to use your code but it complains that it cannot find 'Chart' Thanks, G -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To view this

Re: Highcharts - updating chart with data

2011-03-07 Thread Thomas
I think I already have found out what the problem is. What I did was to create an options object and use this options object to create the chart. Afterwards I pushed data into the options object and expected this to be reflected on the chart. I don't think that is possible. I don't think the chart

Re: Highcharts - updating chart with data

2011-03-04 Thread Uemit
A couple of things: 1.) I am not sure if it is possible to access the series array of the JavaScriptObject instance option, the way you have done it. In hosted mode it should complain that there is no field series in options because options is a generic JavaScriptObject. 2.) You probably have

Highcharts - updating chart with data

2011-03-03 Thread Thomas
Hi. I have just started using Highcharts (www.highcharts.com) and JSNI and I am having some difficulties updating my chart with data. Below is some sample code. First I call the 'createTestChart' method which creates the options object and then uses this options object to create the chart. This