I've utilised the google timeline visualisation and I'm wondering how I might be able to expand the content shown in the row label - the first column.
I've defined a jsfiddle that shows the first row with data fed from json being interpreted as text. The second row I modify after chart.draw that shows text that has been marked up using the same set of tspans.
The jQuery I apply to the second row is:
$('#example1 div div svg g:first text:eq(1)').html("<tspan dx='0' dy='-8' font-weight='bold' fill='red'>This is red</tspan><tspan x='5' dy='17' >This is extra info</tspan>");
I'd like to be able to send this all as json data where the visualisation would interpret it as supplied.
Is this beyond the current capability of the google visualisation? A workaround I've considered is to post-process the visualisation to replace IDs with my tspan content - but that sounds hackish.