lib/ztk/google_chart/bar.rb

Summary

Maintainability
A
0 mins
Test Coverage
module ZTK
  module GoogleChart

    # GoogleChart Bar Chart
    class Bar < ZTK::GoogleChart::Base

      def initialize(configuration={})
        super({ :type => 'BarChart' }.merge(configuration))
      end

    end

  end
end