examples/shape5.rb in write_xlsx-1.09.4 vs examples/shape5.rb in write_xlsx-1.09.5
- old
+ new
@@ -14,20 +14,20 @@
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')