Class: OoxmlParser::ChartPoint
- Inherits:
-
Object
- Object
- OoxmlParser::ChartPoint
- Defined in:
- lib/ooxml_parser/common_parser/common_data/alternate_content/chart/chart_point.rb
Overview
Single Chart Point
Instance Attribute Summary collapse
-
#coordinates ⇒ Object
Returns the value of attribute coordinates.
-
#value ⇒ Object
Returns the value of attribute value.
Instance Method Summary collapse
-
#initialize(coordinates = nil, value = nil) ⇒ ChartPoint
constructor
A new instance of ChartPoint.
Constructor Details
#initialize(coordinates = nil, value = nil) ⇒ ChartPoint
Returns a new instance of ChartPoint.
8 9 10 11 |
# File 'lib/ooxml_parser/common_parser/common_data/alternate_content/chart/chart_point.rb', line 8 def initialize(coordinates = nil, value = nil) @coordinates = coordinates @value = value end |
Instance Attribute Details
#coordinates ⇒ Object
Returns the value of attribute coordinates.
6 7 8 |
# File 'lib/ooxml_parser/common_parser/common_data/alternate_content/chart/chart_point.rb', line 6 def coordinates @coordinates end |
#value ⇒ Object
Returns the value of attribute value.
6 7 8 |
# File 'lib/ooxml_parser/common_parser/common_data/alternate_content/chart/chart_point.rb', line 6 def value @value end |