class Cryplot::GridBase
- Cryplot::GridBase
- Reference
- Object
Overview
class used to specific options for grid lines along axis tics (major or minor)
Included Modules
- Cryplot::DepthMixin(Cryplot::GridBase)
- Cryplot::LineMixin(Cryplot::GridBase)
- Cryplot::ShowMixin(Cryplot::GridBase)
Direct Known Subclasses
Defined in:
plot/elems/grid.crConstructors
Instance Method Summary
-
#repr : String
returns a string representation of object of some class
-
#to_s(io : IO) : Nil
Appends a short String representation of this object which includes its class name and its object address.
Instance methods inherited from module Cryplot::ShowMixin(Cryplot::GridBase)
hidden? : Bool
hidden?,
hide
hide,
show(value = true)
show,
show_repr
show_repr
Instance methods inherited from module Cryplot::BaseMixin(Cryplot::GridBase)
derived : T
derived,
repr : String
repr,
to_s(io : IO) : Nil
to_s
Instance methods inherited from module Cryplot::DepthMixin(Cryplot::GridBase)
back : T
back,
behind : T
behind,
depth_repr : String
depth_repr,
front : T
front
Instance methods inherited from module Cryplot::BaseMixin(Cryplot::GridBase)
derived : T
derived,
repr : String
repr,
to_s(io : IO) : Nil
to_s
Instance methods inherited from module Cryplot::LineMixin(Cryplot::GridBase)
dash_type(val : Int32)
dash_type,
line_color(color : String)
line_color,
line_repr : String
line_repr,
line_style(val : Int32)
line_style,
line_type(val : Int32)
line_type,
line_width(val : Int32)
line_width
Instance methods inherited from module Cryplot::BaseMixin(Cryplot::GridBase)
derived : T
derived,
repr : String
repr,
to_s(io : IO) : Nil
to_s
Constructor Detail
Instance Method Detail
def repr : String
#
Description copied from module Cryplot::BaseMixin(Cryplot::GridBase)
returns a string representation of object of some class
def to_s(io : IO) : Nil
#
Description copied from class Reference
Appends a short String representation of this object which includes its class name and its object address.
class Person
def initialize(@name : String, @age : Int32)
end
end
Person.new("John", 32).to_s # => #<Person:0x10a199f20>