Change tooltip value

Hi please can you say , How i can change tooltip value ???
i have tooltip #data1# and data1=100, i want 100 * 5 = 500 and show in the tooltip 500 for line chart …

Hi
Use the next:

tooltip:{ template: function(obj){ return obj.data1*5 } },

thx a lot !

You are welcome!