lib/ztk/google_chart/combo.rb

Summary

Maintainability
A
0 mins
Test Coverage
module ZTK
  module GoogleChart

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

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

    end

  end
end