Class Chart
In: lib/chart.rb
Parent: Object

Superclass for other chart types, such as BarChart.

Methods

new   options=  

Public Class methods

Public Instance methods

Set the chart options using a nested hash table that corresponds to the options available in Plotr. For example:

   @barchart.options = {
     :colorScheme => '#4444bb',
     :legend => { :hide => true },
     :padding => { :left => 100 },
     :axis => { :labelFontSize => 9 }
   }

[Validate]