You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to google-visua...@googlegroups.com
Do you mean the order of the legend entries? That is determined by the order of the columns in the DataTable or DataView (whichever is used to draw the chart). You can use a DataView to reorder the columns:
var view = new google.visualization.DataView(dataTable); // set the columns used in the view view.setColumns([0, 2, 5, 3, 1, 4]); chart.draw(view, {/*options*/});
On Friday, August 3, 2012 5:02:11 PM UTC-4, WiltonJr wrote:
Hi everybody.
Is there a way to order the legend of a chart in the actual chart api version?