lib/ztk/google_chart/line.rb

Summary

Maintainability
A
0 mins
Test Coverage
module ZTK
  module GoogleChart

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

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

    end

  end
end