Hello,
I would like to know if it is possible to have two labels in X axis in column visualization charts. I need to display day of the week and under it date, for example MON and under it 2012-11-12.
Thanks.
cavan.
Related question... is it possible to display two string labels on a column chart? In the example below, each column label and associated tooltip is labeled as "Smith" which is not useful. It would be great to show both the first name and last name; not just the last name.data.addColumn('string', 'First Name');data.addColumn('string', 'Last Name');data.addColumn('number', 'Age');data.addColumn('number', 'Height);data.addRows([['Jim', 'Smith', 24, 60],['John', 'Smith', 36, 68],Thank you.