Sha256: 8e8656b737ad3e1b26486f73947eacc3aea5e680f8614a7885f1a6edd1afc914
Contents?: true
Size: 567 Bytes
Versions: 22
Compression:
Stored size: 567 Bytes
Contents
# ----------------------------------------------------------------------------- # Generates necessary xml for area chart # # Author: Fernand # ----------------------------------------------------------------------------- require 'ziya/charts/base' module Ziya::Charts class Area < Base # Creates an area chart # <tt>:license</tt>:: the XML/SWF charts license # <tt>:chart_id</tt>:: the name of the chart style sheet. def initialize( license=nil, chart_id=nil ) super( license, chart_id ) @type = "area" end end end
Version data entries
22 entries across 22 versions & 2 rubygems