dvandersluis / amcharts.rb

Ruby/Rails wrapper for Amcharts
MIT License
12 stars 9 forks source link

Themes #4

Closed kmallory closed 9 years ago

kmallory commented 9 years ago

Please add support for amcharts themes.

dvandersluis commented 9 years ago

Can you give me an example of what you're trying to do?

kmallory commented 9 years ago

Wanted to set a theme from chart creation, e.g.

@myreport.x.render_chart(self, :serial, 'x') do |c| c.theme = 'light'

but it seems to be ignored :)

workaround was to use

c.colors = ["#00999f","#d8854f","#eea638","#a7a737","#86a965","#8aabb0","#69c8ff","#cfd27e","#9d9888","#916b8a","#724887","#7256bc"]

ugh.