2

I'm making multiple stacked charts with Google Charts just like what was talking about in this post stacked column chart for two data sets - Google Charts. I'm trying the sample but I can't set the legend position with legend: {position: 'top'}.

Here is the jsfiddle: http://jsfiddle.net/p7o0pjgg/32/

Community
  • 1
  • 1
micmia
  • 1,371
  • 1
  • 14
  • 29
  • I'm commenting from my tablet so I don't have full developer tools to help troubleshoot, but I don't see the convertOptions() method listed for google.visualization.Bar in the api specs on developers.google.com/charts/ . Probably getting undefined there and then the chart uses default options. Just pass it your options object directly. – nbering Jan 20 '15 at 03:50
  • You need convertoptions for the stacked bars, what do you mean exactly with "pass it your options object directly" ? Could you adjust the jsfiddle with a working solution please ? – 4nti Aug 18 '15 at 12:09

1 Answers1

1

the list of options that don't work in Material charts can be found here...

Tracking Issue for Material Chart Feature Parity #2143

which includes...

legend.position: ['top', 'bottom']

WhiteHat
  • 59,912
  • 7
  • 51
  • 133