lib/ziya/charts/floating_column.rb in ziya-1.0.0 vs lib/ziya/charts/floating_column.rb in ziya-2.0.0
- old
+ new
@@ -1,11 +1,16 @@
# -----------------------------------------------------------------------------
# Generates necessary xml for a floating column chart
+#
+# Author: Fernand
# -----------------------------------------------------------------------------
module Ziya::Charts
class FloatingColumn < Base
- def initialize( license=nil, chart_id=nil)
+ # Creates a floating column 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 = "floating column"
+ @type = "floating column"
end
end
end
\ No newline at end of file