| Class | Tk::Tcllib::Plotchart::Barchart |
| In: |
tk/lib/tkextlib/tcllib/plotchart.rb
|
| Parent: | TkCanvas |
| TkCommandNames | = | [ 'canvas'.freeze, '::Plotchart::createBarchart'.freeze |
# File tk/lib/tkextlib/tcllib/plotchart.rb, line 599 def initialize(*args) # args := ([parent,] xlabels, ylabels [, series] [, keys]) # xlabels, ylabels := labels | axis ( depend on normal or horizontal ) # labels := Array of [label, label, ...] # (It determines the number of bars that will be plotted per series.) # axis := Array of [minimum, maximum, stepsize] # series := Integer number of data series | 'stacked' | :stacked if args[0].kind_of?(Array) @xlabels = args.shift @ylabels = args.shift if args[0].kind_of?(Hash) @series_size = :stacked else @series_size = args.shift end super(*args) # create canvas widget else parent = args.shift @xlabels = args.shift @ylabels = args.shift if args[0].kind_of?(Hash) @series_size = :stacked else @series_size = args.shift end if parent.kind_of?(TkCanvas) @path = parent.path else super(parent, *args) # create canvas widget end end @chart = _create_chart end
# File tk/lib/tkextlib/tcllib/plotchart.rb, line 647 def __destroy_hook__ Tk::Tcllib::Plotchart::PlotSeries::SeriesID_TBL.delete(@path) end
# File tk/lib/tkextlib/tcllib/plotchart.rb, line 656 def colours(*cols) # set the colours to be used tk_call_without_enc(@chart, 'colours', *cols) self end
ruby-doc.org is a community service provided by Happy Camper Studios, a Phoenix, Arizona, Ruby application development company.
Documentation content on ruby-doc.org is provided by remarkable members of the Ruby community.
For more information on the Ruby programming language, visit ruby-lang.org.
Want to help improve Ruby's API docs? See Ruby Documentation Guidelines.