lib/ztk/google_chart/pie.rb

Summary

Maintainability
A
0 mins
Test Coverage
module ZTK
  module GoogleChart

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

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

    end

  end
end