examples/shape5.rb in write_xlsx-1.10.0 vs examples/shape5.rb in write_xlsx-1.10.1
- old
+ new
@@ -14,24 +14,24 @@
workbook = WriteXLSX.new('shape5.xlsx')
worksheet = workbook.add_worksheet
s1 = workbook.add_shape(
- :type => 'ellipse',
- :width => 60,
- :height => 60
+ type: 'ellipse',
+ width: 60,
+ height: 60
)
worksheet.insert_shape('A1', s1, 50, 50)
s2 = workbook.add_shape(
- :type => 'plus',
- :width => 20,
- :height => 20
+ type: 'plus',
+ width: 20,
+ height: 20
)
worksheet.insert_shape('A1', s2, 250, 200)
# Create a connector to link the two shapes.
-cxn_shape = workbook.add_shape(:type => 'bentConnector3')
+cxn_shape = workbook.add_shape(type: 'bentConnector3')
# Link the start of the connector to the right side.
cxn_shape.start = s1.id
cxn_shape.start_index = 4 # 4th connection pt, clockwise from top(0).
cxn_shape.start_side = 'b' # r)ight or b)ottom.