javascript - How to customize legend of a chart with Google Scripts -


i've been trying find answer this, have had no such luck. wondering if @ possible add customization legend of chart google scripts? if maybe guys point me in right direction of how accomplish this? in advance.

here options have set far.

options = {'title':'production',                 'width':1366,                 'height':768,                 'vaxis': {'format': '$#,##0.00;($#,##0.00)',                 'title': 'money'},                 'haxis': {'title': 'month'}                 }; 

sincerely, sicariuxs

here example of how can use customize legend of chart google charts:

 var options = {           //slicevisibilitythreshold: 0.01,           chartarea:{left:10,top:0,width:'100%',height:'100%'},           height: 300,           legend: { position: 'right', textstyle: {fontsize: 7}},           pieslicetext: 'none',           colors:['#03a9f4','#0091ea']         }; 

Comments

Popular posts from this blog

javascript - jQuery: Add class depending on URL in the best way -

caching - How to check if a url path exists in the service worker cache -

Redirect to a HTTPS version using .htaccess -