Method: CDK::GRAPH#set

Defined in:
lib/cdk/components/graph.rb

#set(values, count, graph_char, start_at_zero, display_type) ⇒ Object

Set multiple attributes of the widget



89
90
91
92
93
94
# File 'lib/cdk/components/graph.rb', line 89

def set(values, count, graph_char, start_at_zero, display_type)
  ret = self.setValues(values, count, start_at_zero)
  self.setCharacters(graph_char)
  self.setDisplayType(display_type)
  return ret
end