On Sat, Mar 13, 2010 at 1:40 AM, Anky <[email protected]> wrote:
> Hi, > > I am creating a small app using GWT and Google visualization API. > > The API documentation > http://code.google.com/apis/visualization/documentation/gallery/columnchart.html > says the we can set the stacked feature for the column chart, but the > latest visualization jar at > http://code.google.com/p/gwt-google-apis/downloads/list > does not include the stacked feature. that's strange, I am looking at version 0.0.0, and I see the following in ColumnChart.java: public final native void setStacked(boolean stacked) /*-{ this.isStacked = stacked; }-*/; (this is a method of ColumnChart.Options.) the same thing appears in 1.0.2. There are few more. > > please suggest if I am referring to the older jar version. (gwt- > visualization-1.0.2.zip) > there are some options that are not explicitly supported yet. you can access those by calling the set() method on the options object. there are overloads for the different option value types. for example: ColumnChart.Options options = new ColumnChart.Options(); options.set("axisFontSize", 5); > > Also, I would be thankful to you all if any one can give me some hint > to show up the tool tip on mouse over event. > see ColumnChart.addOnMouseOverHandler(). I hope this helps -- let me know if you have more questions. > > > > Thanks > Ankit > > -- > You received this message because you are subscribed to the Google Groups > "Google Visualization API" group. > To post to this group, send email to > [email protected]. > To unsubscribe from this group, send email to > [email protected]<google-visualization-api%[email protected]> > . > For more options, visit this group at > http://groups.google.com/group/google-visualization-api?hl=en. > > -- You received this message because you are subscribed to the Google Groups "Google Visualization API" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/google-visualization-api?hl=en.
