Im using google chart api to show line chart in my application, in that chart now i want to show the vertical axis values with percentage sign. for that i tried the following option
chart.draw(data, {vAxis: {format:'#%'} } );
as mentioned in
How do you set percentage in Google Visualization Chart API?
by 'B Seven'
when using this method, the vertical axis values got multiplied by 100. i.e instead of '12%' - im getting 1200% in vaxis!!!!
i have checked in https://developers.google.com documents also, i cant find any approach to do this.
Is there any alternate to show percentage sign in vaxis.