Class: Java::javafx::scene::chart::XYChart
- Inherits:
-
Object
- Object
- Java::javafx::scene::chart::XYChart
- Includes:
- JRubyFX::DSL
- Defined in:
- lib/jrubyfx/core_ext/xy_chart.rb
Overview
JRubyFX DSL extensions for JavaFX XYCharts
Defined Under Namespace
Constant Summary
Constants included from JRubyFX::DSL
JRubyFX::DSL::NAME_TO_CLASSES, JRubyFX::DSL::NAME_TO_CLASS_NAME
Constants included from JRubyFX::FXImports
JRubyFX::FXImports::JFX_CLASS_HIERARCHY, JRubyFX::FXImports::LOCAL_NAME_MAP
Constants included from JRubyFX
Instance Method Summary collapse
-
#method_missing(name, *args, &block) ⇒ Object
This will defer to node to construct proper object, but will optionally add paths primary child automatically if it is a PathElement.
Methods included from JRubyFX::DSL
compile_dsl, included, load_dsl, #logical_lookup, #self_test_lookup, write_color_method_converter, write_enum_converter, write_enum_method_converter, write_event_method
Methods included from JRubyFX::FXImports
Methods included from JRubyFX
#build, included, load_fx, #run_later, #with
Methods included from JRubyFX::Utils::CommonUtils
#attempt_conversion, #populate_properties, #split_args_from_properties
Dynamic Method Handling
This class handles dynamic methods through the method_missing method
#method_missing(name, *args, &block) ⇒ Object
This will defer to node to construct proper object, but will optionally add paths primary child automatically if it is a PathElement.
27 28 29 30 31 |
# File 'lib/jrubyfx/core_ext/xy_chart.rb', line 27 def method_missing(name, *args, &block) super.tap do |obj| data.add(obj) if obj.kind_of? XYChart::Series end end |