write_xlsx 1.04.0 → 1.07.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (59) hide show
  1. checksums.yaml +4 -4
  2. data/.travis.yml +0 -1
  3. data/Changes +19 -0
  4. data/README.md +1 -1
  5. data/examples/chart_data_labels.rb +320 -0
  6. data/lib/write_xlsx/chart.rb +152 -28
  7. data/lib/write_xlsx/chart/series.rb +100 -0
  8. data/lib/write_xlsx/utility.rb +4 -2
  9. data/lib/write_xlsx/version.rb +1 -1
  10. data/lib/write_xlsx/worksheet.rb +12 -6
  11. data/test/perl_output/chart_data_labels.xlsx +0 -0
  12. data/test/regression/test_array_formula04.rb +31 -0
  13. data/test/regression/test_chart_data_labels26.rb +44 -0
  14. data/test/regression/test_chart_data_labels27.rb +44 -0
  15. data/test/regression/test_chart_data_labels28.rb +52 -0
  16. data/test/regression/test_chart_data_labels29.rb +43 -0
  17. data/test/regression/test_chart_data_labels30.rb +46 -0
  18. data/test/regression/test_chart_data_labels31.rb +49 -0
  19. data/test/regression/test_chart_data_labels32.rb +54 -0
  20. data/test/regression/test_chart_data_labels33.rb +52 -0
  21. data/test/regression/test_chart_data_labels34.rb +54 -0
  22. data/test/regression/test_chart_data_labels35.rb +46 -0
  23. data/test/regression/test_chart_data_labels36.rb +54 -0
  24. data/test/regression/test_chart_data_labels37.rb +51 -0
  25. data/test/regression/test_chart_data_labels38.rb +54 -0
  26. data/test/regression/test_chart_data_labels39.rb +53 -0
  27. data/test/regression/test_chart_data_labels40.rb +53 -0
  28. data/test/regression/test_chart_data_labels41.rb +54 -0
  29. data/test/regression/test_chart_data_labels42.rb +58 -0
  30. data/test/regression/test_chart_data_labels43.rb +58 -0
  31. data/test/regression/test_chart_data_labels44.rb +56 -0
  32. data/test/regression/test_chart_data_labels45.rb +57 -0
  33. data/test/regression/test_chart_data_labels46.rb +61 -0
  34. data/test/regression/test_chart_data_labels47.rb +61 -0
  35. data/test/regression/xlsx_files/array_formula04.xlsx +0 -0
  36. data/test/regression/xlsx_files/chart_data_labels26.xlsx +0 -0
  37. data/test/regression/xlsx_files/chart_data_labels27.xlsx +0 -0
  38. data/test/regression/xlsx_files/chart_data_labels28.xlsx +0 -0
  39. data/test/regression/xlsx_files/chart_data_labels29.xlsx +0 -0
  40. data/test/regression/xlsx_files/chart_data_labels30.xlsx +0 -0
  41. data/test/regression/xlsx_files/chart_data_labels31.xlsx +0 -0
  42. data/test/regression/xlsx_files/chart_data_labels32.xlsx +0 -0
  43. data/test/regression/xlsx_files/chart_data_labels33.xlsx +0 -0
  44. data/test/regression/xlsx_files/chart_data_labels34.xlsx +0 -0
  45. data/test/regression/xlsx_files/chart_data_labels35.xlsx +0 -0
  46. data/test/regression/xlsx_files/chart_data_labels36.xlsx +0 -0
  47. data/test/regression/xlsx_files/chart_data_labels37.xlsx +0 -0
  48. data/test/regression/xlsx_files/chart_data_labels38.xlsx +0 -0
  49. data/test/regression/xlsx_files/chart_data_labels39.xlsx +0 -0
  50. data/test/regression/xlsx_files/chart_data_labels40.xlsx +0 -0
  51. data/test/regression/xlsx_files/chart_data_labels41.xlsx +0 -0
  52. data/test/regression/xlsx_files/chart_data_labels42.xlsx +0 -0
  53. data/test/regression/xlsx_files/chart_data_labels43.xlsx +0 -0
  54. data/test/regression/xlsx_files/chart_data_labels44.xlsx +0 -0
  55. data/test/regression/xlsx_files/chart_data_labels45.xlsx +0 -0
  56. data/test/regression/xlsx_files/chart_data_labels46.xlsx +0 -0
  57. data/test/regression/xlsx_files/chart_data_labels47.xlsx +0 -0
  58. data/test/test_example_match.rb +314 -1
  59. metadata +97 -2
@@ -242,6 +242,319 @@ def test_autofilter
242
242
  compare_xlsx(File.join(@perl_output, @xlsx), @tempfile.path)
243
243
  end
244
244
 
245
+ def test_chart_data_labels
246
+ @xlsx = 'chart_data_labels.xlsx'
247
+ workbook = WriteXLSX.new(@io)
248
+
249
+ worksheet = workbook.add_worksheet
250
+ bold = workbook.add_format(:bold => 1)
251
+
252
+ # Add the worksheet data that the charts will refer to.
253
+ headings = ['Number', 'Data', 'Text']
254
+ data = [
255
+ [ 2, 3, 4, 5, 6, 7 ],
256
+ [20, 10, 20, 30, 40, 30 ],
257
+ ['Jan', 'Feb', 'Mar', 'Apr', 'May', 'Jun']
258
+ ]
259
+
260
+ worksheet.write('A1', headings, bold)
261
+ worksheet.write('A2', data)
262
+
263
+
264
+ #######################################################################
265
+ #
266
+ # Example with standard data labels.
267
+ #
268
+
269
+ # Create a Column chart.
270
+ chart1 = workbook.add_chart(:type => 'column', :embedded => 1)
271
+
272
+ # Configure the data series and add the data labels.
273
+ chart1.add_series(
274
+ :categories => '=Sheet1!$A$2:$A$7',
275
+ :values => '=Sheet1!$B$2:$B$7',
276
+ :data_labels => { :value => 1 }
277
+ )
278
+
279
+ # Add a chart title.
280
+ chart1.set_title(:name => 'Chart with standard data labels')
281
+
282
+ # Turn off the chart legend.
283
+ chart1.set_legend(:none => 1)
284
+
285
+ # Insert the chart into the worksheet (with an offset).
286
+ worksheet.insert_chart('D2', chart1, { :x_offset => 25, :y_offset => 10 })
287
+
288
+
289
+ #######################################################################
290
+ #
291
+ # Example with value and category data labels.
292
+ #
293
+
294
+ # Create a Column chart.
295
+ chart2 = workbook.add_chart(:type => 'column', :embedded => 1)
296
+
297
+ # Configure the data series and add the data labels.
298
+ chart2.add_series(
299
+ :categories => '=Sheet1!$A$2:$A$7',
300
+ :values => '=Sheet1!$B$2:$B$7',
301
+ :data_labels => { :value => 1, :category => 1 }
302
+ )
303
+
304
+ # Add a chart title.
305
+ chart2.set_title(:name => 'Category and Value data labels')
306
+
307
+ # Turn off the chart legend.
308
+ chart2.set_legend(:none => 1)
309
+
310
+ # Insert the chart into the worksheet (with an offset).
311
+ worksheet.insert_chart('D18', chart2, { :x_offset => 25, :y_offset => 10 })
312
+
313
+
314
+ #######################################################################
315
+ #
316
+ # Example with standard data labels with different font.
317
+ #
318
+
319
+ # Create a Column chart.
320
+ chart3 = workbook.add_chart(:type => 'column', :embedded => 1)
321
+
322
+ # Configure the data series and add the data labels.
323
+ chart3.add_series(
324
+ :categories => '=Sheet1!$A$2:$A$7',
325
+ :values => '=Sheet1!$B$2:$B$7',
326
+ :data_labels => { :value => 1,
327
+ :font => {:bold => 1,
328
+ :color => 'red',
329
+ :rotation => -30}
330
+ }
331
+ )
332
+
333
+ # Add a chart title.
334
+ chart3.set_title(:name => 'Data labels with user defined font')
335
+
336
+ # Turn off the chart legend.
337
+ chart3.set_legend(:none => 1)
338
+
339
+ # Insert the chart into the worksheet (with an offset).
340
+ worksheet.insert_chart('D34', chart3, { :x_offset => 25, :y_offset => 10 })
341
+
342
+
343
+ #######################################################################
344
+ #
345
+ # Example with custom string data labels.
346
+ #
347
+
348
+ # Create a Column chart.
349
+ chart4 = workbook.add_chart(:type => 'column', :embedded => 1)
350
+
351
+ # Configure the data series and add the data labels.
352
+ chart4.add_series(
353
+ :categories => '=Sheet1!$A$2:$A$7',
354
+ :values => '=Sheet1!$B$2:$B$7',
355
+ :data_labels => {
356
+ :value => 1,
357
+ :border => {:color => 'red'},
358
+ :fill => {:color => 'yellow'}
359
+ }
360
+ )
361
+
362
+ # Add a chart title.
363
+ chart4.set_title(:name => 'Data labels with formatting')
364
+
365
+ # Turn off the chart legend.
366
+ chart4.set_legend(:none => 1)
367
+
368
+ # Insert the chart into the worksheet (with an offset).
369
+ worksheet.insert_chart('D50', chart4, { :x_offset => 25, :y_offset => 10 })
370
+
371
+
372
+ #######################################################################
373
+ #
374
+ # Example with custom string data labels.
375
+ #
376
+
377
+ # Create a Column chart.
378
+ chart5 = workbook.add_chart( :type => 'column', :embedded => 1 )
379
+
380
+ # Some custom labels.
381
+ custom_labels = [
382
+ { :value => 'Amy' },
383
+ { :value => 'Bea' },
384
+ { :value => 'Eva' },
385
+ { :value => 'Fay' },
386
+ { :value => 'Liv' },
387
+ { :value => 'Una' }
388
+ ]
389
+
390
+ # Configure the data series and add the data labels.
391
+ chart5.add_series(
392
+ :categories => '=Sheet1!$A$2:$A$7',
393
+ :values => '=Sheet1!$B$2:$B$7',
394
+ :data_labels => { :value => 1, :custom => custom_labels }
395
+ )
396
+
397
+ # Add a chart title.
398
+ chart5.set_title(:name => 'Chart with custom string data labels')
399
+
400
+ # Turn off the chart legend.
401
+ chart5.set_legend(:none => 1)
402
+
403
+ # Insert the chart into the worksheet (with an offset).
404
+ worksheet.insert_chart('D66', chart5, { :x_offset => 25, :y_offset => 10 })
405
+
406
+
407
+ #######################################################################
408
+ #
409
+ # Example with custom data labels from cells.
410
+ #
411
+
412
+ # Create a Column chart.
413
+ chart6 = workbook.add_chart(:type => 'column', :embedded => 1)
414
+
415
+ # Some custom labels.
416
+ custom_labels = [
417
+ { :value => '=Sheet1!$C$2' },
418
+ { :value => '=Sheet1!$C$3' },
419
+ { :value => '=Sheet1!$C$4' },
420
+ { :value => '=Sheet1!$C$5' },
421
+ { :value => '=Sheet1!$C$6' },
422
+ { :value => '=Sheet1!$C$7' }
423
+ ]
424
+
425
+
426
+ # Configure the data series and add the data labels.
427
+ chart6.add_series(
428
+ :categories => '=Sheet1!$A$2:$A$7',
429
+ :values => '=Sheet1!$B$2:$B$7',
430
+ :data_labels => { :value => 1, :custom => custom_labels }
431
+ )
432
+
433
+ # Add a chart title.
434
+ chart6.set_title(:name => 'Chart with custom data labels from cells')
435
+
436
+ # Turn off the chart legend.
437
+ chart6.set_legend(:none => 1)
438
+
439
+ # Insert the chart into the worksheet (with an offset).
440
+ worksheet.insert_chart('D82', chart6, { :x_offset => 25, :y_offset => 10 })
441
+
442
+
443
+ #######################################################################
444
+ #
445
+ # Example with custom and default data labels.
446
+ #
447
+
448
+ # Create a Column chart.
449
+ chart7 = workbook.add_chart(:type => 'column', :embedded => 1)
450
+
451
+ # Some custom labels. The nil items will get the default value.
452
+ # We also set a font for the custom items as an extra example.
453
+ custom_labels = [
454
+ { :value => '=Sheet1!$C$2', :font => { :color => 'red' } },
455
+ nil,
456
+ { :value => '=Sheet1!$C$4', :font => { :color => 'red' } },
457
+ { :value => '=Sheet1!$C$5', :font => { :color => 'red' } }
458
+ ]
459
+
460
+
461
+ # Configure the data series and add the data labels.
462
+ chart7.add_series(
463
+ :categories => '=Sheet1!$A$2:$A$7',
464
+ :values => '=Sheet1!$B$2:$B$7',
465
+ :data_labels => { :value => 1, :custom => custom_labels }
466
+ )
467
+
468
+ # Add a chart title.
469
+ chart7.set_title(:name => 'Mixed custom and default data labels')
470
+
471
+ # Turn off the chart legend.
472
+ chart7.set_legend(:none => 1)
473
+
474
+ # Insert the chart into the worksheet (with an offset).
475
+ worksheet.insert_chart('D98', chart7, { :x_offset => 25, :y_offset => 10 })
476
+
477
+
478
+ #######################################################################
479
+ #
480
+ # Example with deleted custom data labels.
481
+ #
482
+
483
+ # Create a Column chart.
484
+ chart8 = workbook.add_chart(:type => 'column', :embedded => 1)
485
+
486
+ # Some deleted custom labels and defaults (nil). This allows us to
487
+ # highlight certain values such as the minimum and maximum.
488
+ custom_labels = [
489
+ { :delete => 1 },
490
+ nil,
491
+ { :delete => 1 },
492
+ { :delete => 1 },
493
+ nil,
494
+ { :delete => 1 }
495
+ ]
496
+
497
+ # Configure the data series and add the data labels.
498
+ chart8.add_series(
499
+ :categories => '=Sheet1!$A$2:$A$7',
500
+ :values => '=Sheet1!$B$2:$B$7',
501
+ :data_labels => { :value => 1, :custom => custom_labels }
502
+ )
503
+
504
+ # Add a chart title.
505
+ chart8.set_title(:name => 'Chart with deleted data labels')
506
+
507
+ # Turn off the chart legend.
508
+ chart8.set_legend(:none => 1)
509
+
510
+ # Insert the chart into the worksheet (with an offset).
511
+ worksheet.insert_chart('D114', chart8, { :x_offset => 25, :y_offset => 10 })
512
+
513
+ #######################################################################
514
+ #
515
+ # Example with custom string data labels and formatting.
516
+ #
517
+
518
+ # Create a Column chart.
519
+ chart9 = workbook.add_chart( :type => 'column', :embedded => 1 )
520
+
521
+ # Some custom labels.
522
+ custom_labels = [
523
+ { :value => 'Amy', :border => {:color => 'blue'} },
524
+ { :value => 'Bea' },
525
+ { :value => 'Eva' },
526
+ { :value => 'Fay' },
527
+ { :value => 'Liv' },
528
+ { :value => 'Una', :fill => {:color => 'green'} }
529
+ ]
530
+
531
+
532
+ # Configure the data series and add the data labels.
533
+ chart9.add_series(
534
+ :categories => '=Sheet1!$A$2:$A$7',
535
+ :values => '=Sheet1!$B$2:$B$7',
536
+ :data_labels => {
537
+ :value => 1,
538
+ :custom => custom_labels,
539
+ :border => {:color => 'red'},
540
+ :fill => {:color => 'yellow'}
541
+ }
542
+ )
543
+
544
+ # Add a chart title.
545
+ chart9.set_title( :name => 'Chart with custom labels and formatting' )
546
+
547
+ # Turn off the chart legend.
548
+ chart9.set_legend( :none => 1 )
549
+
550
+ # Insert the chart into the worksheet (with an offset).
551
+ worksheet.insert_chart( 'D130', chart9, { :x_offset => 25, :y_offset => 10 } )
552
+
553
+ workbook.close
554
+ store_to_tempfile
555
+ compare_xlsx(File.join(@perl_output, @xlsx), @tempfile.path)
556
+ end
557
+
245
558
  def test_chart_gauge
246
559
  @xlsx = 'chart_gauge.xlsx'
247
560
  workbook = WriteXLSX.new(@io)
@@ -577,7 +890,7 @@ def test_chart_doughnut
577
890
  :name => 'Doughnut sales data',
578
891
  :categories => [ 'Sheet1', 1, 3, 0, 0 ],
579
892
  :values => [ 'Sheet1', 1, 3, 1, 1 ]
580
- );
893
+ )
581
894
 
582
895
  # Add a title.
583
896
  chart1.set_title(:name => 'Popular Doughnut Types')
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: write_xlsx
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.04.0
4
+ version: 1.07.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Hideo NAKAMURA
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2021-02-14 00:00:00.000000000 Z
11
+ date: 2021-02-17 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rubyzip
@@ -110,6 +110,7 @@ files:
110
110
  - examples/chart_clustered.rb
111
111
  - examples/chart_column.rb
112
112
  - examples/chart_combined.rb
113
+ - examples/chart_data_labels.rb
113
114
  - examples/chart_data_table.rb
114
115
  - examples/chart_data_tools.rb
115
116
  - examples/chart_doughnut.rb
@@ -335,6 +336,7 @@ files:
335
336
  - test/perl_output/chart_bar.xlsx
336
337
  - test/perl_output/chart_column.xlsx
337
338
  - test/perl_output/chart_combined.xlsx
339
+ - test/perl_output/chart_data_labels.xlsx
338
340
  - test/perl_output/chart_data_table.xlsx
339
341
  - test/perl_output/chart_data_tools.xlsx
340
342
  - test/perl_output/chart_doughnut.xlsx
@@ -429,6 +431,7 @@ files:
429
431
  - test/regression/test_array_formula01.rb
430
432
  - test/regression/test_array_formula02.rb
431
433
  - test/regression/test_array_formula03.rb
434
+ - test/regression/test_array_formula04.rb
432
435
  - test/regression/test_autofilter00.rb
433
436
  - test/regression/test_autofilter01.rb
434
437
  - test/regression/test_autofilter02.rb
@@ -589,6 +592,28 @@ files:
589
592
  - test/regression/test_chart_data_labels23.rb
590
593
  - test/regression/test_chart_data_labels24.rb
591
594
  - test/regression/test_chart_data_labels25.rb
595
+ - test/regression/test_chart_data_labels26.rb
596
+ - test/regression/test_chart_data_labels27.rb
597
+ - test/regression/test_chart_data_labels28.rb
598
+ - test/regression/test_chart_data_labels29.rb
599
+ - test/regression/test_chart_data_labels30.rb
600
+ - test/regression/test_chart_data_labels31.rb
601
+ - test/regression/test_chart_data_labels32.rb
602
+ - test/regression/test_chart_data_labels33.rb
603
+ - test/regression/test_chart_data_labels34.rb
604
+ - test/regression/test_chart_data_labels35.rb
605
+ - test/regression/test_chart_data_labels36.rb
606
+ - test/regression/test_chart_data_labels37.rb
607
+ - test/regression/test_chart_data_labels38.rb
608
+ - test/regression/test_chart_data_labels39.rb
609
+ - test/regression/test_chart_data_labels40.rb
610
+ - test/regression/test_chart_data_labels41.rb
611
+ - test/regression/test_chart_data_labels42.rb
612
+ - test/regression/test_chart_data_labels43.rb
613
+ - test/regression/test_chart_data_labels44.rb
614
+ - test/regression/test_chart_data_labels45.rb
615
+ - test/regression/test_chart_data_labels46.rb
616
+ - test/regression/test_chart_data_labels47.rb
592
617
  - test/regression/test_chart_date01.rb
593
618
  - test/regression/test_chart_date02.rb
594
619
  - test/regression/test_chart_date03.rb
@@ -1161,6 +1186,7 @@ files:
1161
1186
  - test/regression/xlsx_files/array_formula01.xlsx
1162
1187
  - test/regression/xlsx_files/array_formula02.xlsx
1163
1188
  - test/regression/xlsx_files/array_formula03.xlsx
1189
+ - test/regression/xlsx_files/array_formula04.xlsx
1164
1190
  - test/regression/xlsx_files/autofilter00.xlsx
1165
1191
  - test/regression/xlsx_files/autofilter01.xlsx
1166
1192
  - test/regression/xlsx_files/autofilter02.xlsx
@@ -1321,6 +1347,28 @@ files:
1321
1347
  - test/regression/xlsx_files/chart_data_labels23.xlsx
1322
1348
  - test/regression/xlsx_files/chart_data_labels24.xlsx
1323
1349
  - test/regression/xlsx_files/chart_data_labels25.xlsx
1350
+ - test/regression/xlsx_files/chart_data_labels26.xlsx
1351
+ - test/regression/xlsx_files/chart_data_labels27.xlsx
1352
+ - test/regression/xlsx_files/chart_data_labels28.xlsx
1353
+ - test/regression/xlsx_files/chart_data_labels29.xlsx
1354
+ - test/regression/xlsx_files/chart_data_labels30.xlsx
1355
+ - test/regression/xlsx_files/chart_data_labels31.xlsx
1356
+ - test/regression/xlsx_files/chart_data_labels32.xlsx
1357
+ - test/regression/xlsx_files/chart_data_labels33.xlsx
1358
+ - test/regression/xlsx_files/chart_data_labels34.xlsx
1359
+ - test/regression/xlsx_files/chart_data_labels35.xlsx
1360
+ - test/regression/xlsx_files/chart_data_labels36.xlsx
1361
+ - test/regression/xlsx_files/chart_data_labels37.xlsx
1362
+ - test/regression/xlsx_files/chart_data_labels38.xlsx
1363
+ - test/regression/xlsx_files/chart_data_labels39.xlsx
1364
+ - test/regression/xlsx_files/chart_data_labels40.xlsx
1365
+ - test/regression/xlsx_files/chart_data_labels41.xlsx
1366
+ - test/regression/xlsx_files/chart_data_labels42.xlsx
1367
+ - test/regression/xlsx_files/chart_data_labels43.xlsx
1368
+ - test/regression/xlsx_files/chart_data_labels44.xlsx
1369
+ - test/regression/xlsx_files/chart_data_labels45.xlsx
1370
+ - test/regression/xlsx_files/chart_data_labels46.xlsx
1371
+ - test/regression/xlsx_files/chart_data_labels47.xlsx
1324
1372
  - test/regression/xlsx_files/chart_date01.xlsx
1325
1373
  - test/regression/xlsx_files/chart_date02.xlsx
1326
1374
  - test/regression/xlsx_files/chart_date03.xlsx
@@ -2157,6 +2205,7 @@ test_files:
2157
2205
  - test/perl_output/chart_bar.xlsx
2158
2206
  - test/perl_output/chart_column.xlsx
2159
2207
  - test/perl_output/chart_combined.xlsx
2208
+ - test/perl_output/chart_data_labels.xlsx
2160
2209
  - test/perl_output/chart_data_table.xlsx
2161
2210
  - test/perl_output/chart_data_tools.xlsx
2162
2211
  - test/perl_output/chart_doughnut.xlsx
@@ -2251,6 +2300,7 @@ test_files:
2251
2300
  - test/regression/test_array_formula01.rb
2252
2301
  - test/regression/test_array_formula02.rb
2253
2302
  - test/regression/test_array_formula03.rb
2303
+ - test/regression/test_array_formula04.rb
2254
2304
  - test/regression/test_autofilter00.rb
2255
2305
  - test/regression/test_autofilter01.rb
2256
2306
  - test/regression/test_autofilter02.rb
@@ -2411,6 +2461,28 @@ test_files:
2411
2461
  - test/regression/test_chart_data_labels23.rb
2412
2462
  - test/regression/test_chart_data_labels24.rb
2413
2463
  - test/regression/test_chart_data_labels25.rb
2464
+ - test/regression/test_chart_data_labels26.rb
2465
+ - test/regression/test_chart_data_labels27.rb
2466
+ - test/regression/test_chart_data_labels28.rb
2467
+ - test/regression/test_chart_data_labels29.rb
2468
+ - test/regression/test_chart_data_labels30.rb
2469
+ - test/regression/test_chart_data_labels31.rb
2470
+ - test/regression/test_chart_data_labels32.rb
2471
+ - test/regression/test_chart_data_labels33.rb
2472
+ - test/regression/test_chart_data_labels34.rb
2473
+ - test/regression/test_chart_data_labels35.rb
2474
+ - test/regression/test_chart_data_labels36.rb
2475
+ - test/regression/test_chart_data_labels37.rb
2476
+ - test/regression/test_chart_data_labels38.rb
2477
+ - test/regression/test_chart_data_labels39.rb
2478
+ - test/regression/test_chart_data_labels40.rb
2479
+ - test/regression/test_chart_data_labels41.rb
2480
+ - test/regression/test_chart_data_labels42.rb
2481
+ - test/regression/test_chart_data_labels43.rb
2482
+ - test/regression/test_chart_data_labels44.rb
2483
+ - test/regression/test_chart_data_labels45.rb
2484
+ - test/regression/test_chart_data_labels46.rb
2485
+ - test/regression/test_chart_data_labels47.rb
2414
2486
  - test/regression/test_chart_date01.rb
2415
2487
  - test/regression/test_chart_date02.rb
2416
2488
  - test/regression/test_chart_date03.rb
@@ -2983,6 +3055,7 @@ test_files:
2983
3055
  - test/regression/xlsx_files/array_formula01.xlsx
2984
3056
  - test/regression/xlsx_files/array_formula02.xlsx
2985
3057
  - test/regression/xlsx_files/array_formula03.xlsx
3058
+ - test/regression/xlsx_files/array_formula04.xlsx
2986
3059
  - test/regression/xlsx_files/autofilter00.xlsx
2987
3060
  - test/regression/xlsx_files/autofilter01.xlsx
2988
3061
  - test/regression/xlsx_files/autofilter02.xlsx
@@ -3143,6 +3216,28 @@ test_files:
3143
3216
  - test/regression/xlsx_files/chart_data_labels23.xlsx
3144
3217
  - test/regression/xlsx_files/chart_data_labels24.xlsx
3145
3218
  - test/regression/xlsx_files/chart_data_labels25.xlsx
3219
+ - test/regression/xlsx_files/chart_data_labels26.xlsx
3220
+ - test/regression/xlsx_files/chart_data_labels27.xlsx
3221
+ - test/regression/xlsx_files/chart_data_labels28.xlsx
3222
+ - test/regression/xlsx_files/chart_data_labels29.xlsx
3223
+ - test/regression/xlsx_files/chart_data_labels30.xlsx
3224
+ - test/regression/xlsx_files/chart_data_labels31.xlsx
3225
+ - test/regression/xlsx_files/chart_data_labels32.xlsx
3226
+ - test/regression/xlsx_files/chart_data_labels33.xlsx
3227
+ - test/regression/xlsx_files/chart_data_labels34.xlsx
3228
+ - test/regression/xlsx_files/chart_data_labels35.xlsx
3229
+ - test/regression/xlsx_files/chart_data_labels36.xlsx
3230
+ - test/regression/xlsx_files/chart_data_labels37.xlsx
3231
+ - test/regression/xlsx_files/chart_data_labels38.xlsx
3232
+ - test/regression/xlsx_files/chart_data_labels39.xlsx
3233
+ - test/regression/xlsx_files/chart_data_labels40.xlsx
3234
+ - test/regression/xlsx_files/chart_data_labels41.xlsx
3235
+ - test/regression/xlsx_files/chart_data_labels42.xlsx
3236
+ - test/regression/xlsx_files/chart_data_labels43.xlsx
3237
+ - test/regression/xlsx_files/chart_data_labels44.xlsx
3238
+ - test/regression/xlsx_files/chart_data_labels45.xlsx
3239
+ - test/regression/xlsx_files/chart_data_labels46.xlsx
3240
+ - test/regression/xlsx_files/chart_data_labels47.xlsx
3146
3241
  - test/regression/xlsx_files/chart_date01.xlsx
3147
3242
  - test/regression/xlsx_files/chart_date02.xlsx
3148
3243
  - test/regression/xlsx_files/chart_date03.xlsx