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
Post a Comment