KManager.action :bootstrap do action do DrawioDsl::Drawio .init(k_builder, on_exist: :write, on_action: :execute) .diagram(theme: :style_06) .page('Style-Plain', margin_left: 0, margin_top: 0) do grid_layout(wrap_at: 2, grid_w: 400) shape_count = 2 # for 1 to 20 step 2 (1..shape_count).step(2).each do |i| circle(i, title: i) ellipse(i+1, title: i + 1) end (1..shape_count).step(2).each do |i| line(source: i, target: i+1) end # # label = '

the quick brown fox jumped over the lazy dog

' # label = '' end .cd(:spec) .save('.samples/35-ids-and-arrows.drawio') # .cd(:docs) # .export_svg('samples/styles-plain', page: 1) end end