Is it possible to make a ColumnChart not display the colored square for a given column in the chart but just show the bars pertaining to that column. For example if I create a DataTable like this- DataTable data = DataTable.create(); data.addColumn(ColumnType.STRING); data.addColumn(ColumnType.NUMBER));
and add values to it like this- data.setValue(0, 0, "x"); data.setValue(0, 1, 15); data.setValue(1, 0, "y"); data.setValue(1, 1, 20); and so on... is it possible that I can make a ColumnChart to just show the bars pertaining to the second column and not the colored square shown in the top right corner if I set the data in it like this- chart.draw(data, options); (you can ignore "options") I am new to this API so if I sounded silly or not descriptive enough in this question, please let me know. Thanks, Alankar -- 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.
