In addition to containing the chart values, chart_data can be used to add a tooltip to the graphic elements generated by those values. The tooltip is the black on red label that appears when moving the mouse over the chart here:
To display a tooltip over the graphic elements that correspond to data values, add a tooltip parameter to chart_data's <number> tags. It can be added to all, some, or none of the number tags:
<!-- add a tooltip to the lowest and highest data values -->
<chart_data>
<row>
<null/>
<string>2007</string>
<string>2008</string>
<string>2009</string>
</row>
<row>
<string>Region A</string>
<number tooltip='low'>20</number>
<number>75</number>
<number>85</number>
</row>
<row>
<string>Region B</string>
<number>40</number>
<number>25</number>
<number tooltip='high'>105</number>
</row>
</chart_data>
To add a multi-line tooltip, break the text lines with \r: