Reputation: 99
I am using google pie chart API using PHP and want to increase the font size in the chart. I found we can use 'chdls' to increase the font size but its not working... i am using this url
http://chart.apis.google.com/chart?chs=300x200&cht=p3&chl=Won|Draw|Lost&chd=t:6.0,3.0,1.0&chtt=Pie+chart+for+TalkPHP's+soccerteam|By+maZtah&chco=ff0099&chdls=18
Upvotes: 0
Views: 4593
Reputation: 2624
You can increase the font size of Chart title by using the below code:
chts=FF0000,20,r
(chdls is used for legend size, colors ONLY)
Upvotes: 0