Fred
unread,May 24, 2011, 7:29:19 AM5/24/11Sign in to reply to author
Sign in to forward
You do not have permission to delete messages in this group
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to Google Visualization API
Is it possible to create a background with gradient in the Line Chart
using the Visualization API form GWT. I have tried a few different
ideas but none of the work.
This is what my code looks like so far:
LineChart lineChart = new LineChart(createTable(), createOptions());
my createOptions metod (which doewsn't work):
private Options createOptions()
{
Color c = Color.create();
c.set("chf", "c,lg,0,EFEFEF,0,BBBBBB,1");
options.setBackgroundColor(c);
}
Would be great if someone out there could help me along. Thinking
about going back to Highcharts which I got to work with GWT.