axlsx 1.0.10 → 1.0.11

Sign up to get free protection for your applications and to get access to all the features.
Files changed (102) hide show
  1. data/CHANGELOG.md +14 -0
  2. data/Gemfile +3 -7
  3. data/Gemfile.lock +17 -8
  4. data/README.md +88 -59
  5. data/axlsx.gemspec +9 -3
  6. data/doc/Axlsx.html +482 -248
  7. data/doc/Axlsx/App.html +237 -159
  8. data/doc/Axlsx/Axis.html +75 -51
  9. data/doc/Axlsx/Bar3DChart.html +75 -53
  10. data/doc/Axlsx/BarSeries.html +45 -31
  11. data/doc/Axlsx/Border.html +70 -50
  12. data/doc/Axlsx/BorderPr.html +80 -62
  13. data/doc/Axlsx/CatAxis.html +62 -43
  14. data/doc/Axlsx/CatAxisData.html +23 -16
  15. data/doc/Axlsx/Cell.html +2022 -393
  16. data/doc/Axlsx/CellAlignment.html +103 -75
  17. data/doc/Axlsx/CellProtection.html +44 -30
  18. data/doc/Axlsx/CellStyle.html +66 -46
  19. data/doc/Axlsx/Chart.html +159 -108
  20. data/doc/Axlsx/Color.html +73 -52
  21. data/doc/Axlsx/ContentType.html +20 -14
  22. data/doc/Axlsx/Core.html +29 -20
  23. data/doc/Axlsx/DataTypeValidator.html +27 -19
  24. data/doc/Axlsx/Default.html +39 -27
  25. data/doc/Axlsx/Drawing.html +104 -70
  26. data/doc/Axlsx/Fill.html +33 -23
  27. data/doc/Axlsx/Font.html +132 -98
  28. data/doc/Axlsx/GradientFill.html +70 -48
  29. data/doc/Axlsx/GradientStop.html +31 -21
  30. data/doc/Axlsx/GraphicFrame.html +40 -27
  31. data/doc/Axlsx/Line3DChart.html +62 -43
  32. data/doc/Axlsx/LineSeries.html +37 -25
  33. data/doc/Axlsx/Marker.html +63 -43
  34. data/doc/Axlsx/NumFmt.html +79 -65
  35. data/doc/Axlsx/OneCellAnchor.html +78 -54
  36. data/doc/Axlsx/Override.html +39 -27
  37. data/doc/Axlsx/Package.html +103 -163
  38. data/doc/Axlsx/Parser.html +549 -0
  39. data/doc/Axlsx/PatternFill.html +66 -51
  40. data/doc/Axlsx/Pic.html +230 -123
  41. data/doc/Axlsx/PictureLocking.html +1159 -0
  42. data/doc/Axlsx/Pie3DChart.html +23 -16
  43. data/doc/Axlsx/PieSeries.html +44 -30
  44. data/doc/Axlsx/RegexValidator.html +14 -10
  45. data/doc/Axlsx/Relationship.html +40 -27
  46. data/doc/Axlsx/Relationships.html +20 -14
  47. data/doc/Axlsx/RestrictionValidator.html +25 -17
  48. data/doc/Axlsx/Row.html +73 -53
  49. data/doc/Axlsx/Scaling.html +46 -31
  50. data/doc/Axlsx/SerAxis.html +49 -33
  51. data/doc/Axlsx/Series.html +51 -35
  52. data/doc/Axlsx/SeriesTitle.html +14 -10
  53. data/doc/Axlsx/Styles.html +210 -156
  54. data/doc/Axlsx/TableStyle.html +47 -32
  55. data/doc/Axlsx/TableStyleElement.html +75 -61
  56. data/doc/Axlsx/TableStyles.html +42 -28
  57. data/doc/Axlsx/Title.html +36 -25
  58. data/doc/Axlsx/TwoCellAnchor.html +83 -58
  59. data/doc/Axlsx/ValAxis.html +35 -24
  60. data/doc/Axlsx/ValAxisData.html +13 -9
  61. data/doc/Axlsx/View3D.html +64 -43
  62. data/doc/Axlsx/Workbook.html +305 -147
  63. data/doc/Axlsx/Worksheet.html +567 -271
  64. data/doc/Axlsx/Xf.html +114 -77
  65. data/doc/_index.html +15 -1
  66. data/doc/class_list.html +1 -1
  67. data/doc/css/style.css +1 -1
  68. data/doc/file.LICENSE.html +25 -21
  69. data/doc/file.README.html +89 -66
  70. data/doc/index.html +89 -66
  71. data/doc/js/app.js +4 -4
  72. data/doc/method_list.html +717 -413
  73. data/doc/top-level-namespace.html +1 -1
  74. data/examples/example.rb +52 -25
  75. data/examples/follow_20111202.xlsx +0 -0
  76. data/lib/axlsx.rb +14 -1
  77. data/lib/axlsx/drawing/chart.rb +20 -4
  78. data/lib/axlsx/drawing/drawing.rb +1 -1
  79. data/lib/axlsx/drawing/pic.rb +5 -2
  80. data/lib/axlsx/drawing/picture_locking.rb +72 -0
  81. data/lib/axlsx/package.rb +9 -7
  82. data/lib/axlsx/stylesheet/color.rb +19 -9
  83. data/lib/axlsx/stylesheet/styles.rb +2 -0
  84. data/lib/axlsx/util/constants.rb +6 -0
  85. data/lib/axlsx/util/parser.rb +43 -0
  86. data/lib/axlsx/version.rb +1 -1
  87. data/lib/axlsx/workbook/workbook.rb +21 -1
  88. data/lib/axlsx/workbook/worksheet/cell.rb +159 -7
  89. data/lib/axlsx/workbook/worksheet/row.rb +4 -2
  90. data/lib/axlsx/workbook/worksheet/worksheet.rb +38 -4
  91. data/test/drawing/tc_picture_locking.rb +73 -0
  92. data/test/rels/tc_relationships.rb +0 -1
  93. data/test/stylesheet/tc_styles.rb +0 -12
  94. data/test/tc_package.rb +5 -3
  95. data/test/workbook/tc_workbook.rb +7 -0
  96. data/test/workbook/worksheet/tc_cell.rb +102 -1
  97. data/test/workbook/worksheet/tc_worksheet.rb +17 -0
  98. metadata +79 -19
  99. data/doc/Axlsx/Ar.html +0 -196
  100. data/doc/Axlsx/Ar/ClassMethods.html +0 -188
  101. data/doc/Axlsx/Ar/InstanceMethods.html +0 -108
  102. data/doc/Axlsx/Ar/SingletonMethods.html +0 -312
data/doc/js/app.js CHANGED
@@ -2,11 +2,11 @@ function createSourceLinks() {
2
2
  $('.method_details_list .source_code').
3
3
  before("<span class='showSource'>[<a href='#' class='toggleSource'>View source</a>]</span>");
4
4
  $('.toggleSource').toggle(function() {
5
- $(this).parent().nextAll('.source_code').slideDown(100);
5
+ $(this).parent().next().slideDown(100);
6
6
  $(this).text("Hide source");
7
7
  },
8
8
  function() {
9
- $(this).parent().nextAll('.source_code').slideUp(100);
9
+ $(this).parent().next().slideUp(100);
10
10
  $(this).text("View source");
11
11
  });
12
12
  }
@@ -109,10 +109,10 @@ function summaryToggle() {
109
109
  $('.summary_toggle').click(function() {
110
110
  localStorage.summaryCollapsed = $(this).text();
111
111
  $(this).text($(this).text() == "collapse" ? "expand" : "collapse");
112
- var next = $(this).parent().parent().nextAll('ul.summary').first();
112
+ var next = $(this).parent().parent().next();
113
113
  if (next.hasClass('compact')) {
114
114
  next.toggle();
115
- next.nextAll('ul.summary').first().toggle();
115
+ next.next().toggle();
116
116
  }
117
117
  else if (next.hasClass('summary')) {
118
118
  var list = $('<ul class="summary compact" />');
data/doc/method_list.html CHANGED
@@ -81,17 +81,17 @@
81
81
 
82
82
 
83
83
  <li class="r2 ">
84
- <span class='object_link'><a href="Axlsx/Default.html#ContentType-instance_method" title="Axlsx::Default#ContentType (method)">#ContentType</a></span>
84
+ <span class='object_link'><a href="Axlsx/Override.html#ContentType-instance_method" title="Axlsx::Override#ContentType (method)">#ContentType</a></span>
85
85
 
86
- <small>Axlsx::Default</small>
86
+ <small>Axlsx::Override</small>
87
87
 
88
88
  </li>
89
89
 
90
90
 
91
91
  <li class="r1 ">
92
- <span class='object_link'><a href="Axlsx/Override.html#ContentType-instance_method" title="Axlsx::Override#ContentType (method)">#ContentType</a></span>
92
+ <span class='object_link'><a href="Axlsx/Default.html#ContentType-instance_method" title="Axlsx::Default#ContentType (method)">#ContentType</a></span>
93
93
 
94
- <small>Axlsx::Override</small>
94
+ <small>Axlsx::Default</small>
95
95
 
96
96
  </li>
97
97
 
@@ -272,6 +272,22 @@
272
272
  </li>
273
273
 
274
274
 
275
+ <li class="r2 ">
276
+ <span class='object_link'><a href="Axlsx/Workbook.html#%5B%5D-instance_method" title="Axlsx::Workbook#[] (method)">#[]</a></span>
277
+
278
+ <small>Axlsx::Workbook</small>
279
+
280
+ </li>
281
+
282
+
283
+ <li class="r1 ">
284
+ <span class='object_link'><a href="Axlsx/Worksheet.html#%5B%5D-instance_method" title="Axlsx::Worksheet#[] (method)">#[]</a></span>
285
+
286
+ <small>Axlsx::Worksheet</small>
287
+
288
+ </li>
289
+
290
+
275
291
  <li class="r2 ">
276
292
  <span class='object_link'><a href="Axlsx/Row.html#add_cell-instance_method" title="Axlsx::Row#add_cell (method)">#add_cell</a></span>
277
293
 
@@ -433,17 +449,17 @@
433
449
 
434
450
 
435
451
  <li class="r2 ">
436
- <span class='object_link'><a href="Axlsx/Color.html#auto-instance_method" title="Axlsx::Color#auto (method)">#auto</a></span>
452
+ <span class='object_link'><a href="Axlsx/CatAxis.html#auto-instance_method" title="Axlsx::CatAxis#auto (method)">#auto</a></span>
437
453
 
438
- <small>Axlsx::Color</small>
454
+ <small>Axlsx::CatAxis</small>
439
455
 
440
456
  </li>
441
457
 
442
458
 
443
459
  <li class="r1 ">
444
- <span class='object_link'><a href="Axlsx/CatAxis.html#auto-instance_method" title="Axlsx::CatAxis#auto (method)">#auto</a></span>
460
+ <span class='object_link'><a href="Axlsx/Color.html#auto-instance_method" title="Axlsx::Color#auto (method)">#auto</a></span>
445
461
 
446
- <small>Axlsx::CatAxis</small>
462
+ <small>Axlsx::Color</small>
447
463
 
448
464
  </li>
449
465
 
@@ -489,6 +505,14 @@
489
505
 
490
506
 
491
507
  <li class="r1 ">
508
+ <span class='object_link'><a href="Axlsx/Cell.html#b-instance_method" title="Axlsx::Cell#b (method)">#b</a></span>
509
+
510
+ <small>Axlsx::Cell</small>
511
+
512
+ </li>
513
+
514
+
515
+ <li class="r2 ">
492
516
  <span class='object_link'><a href="Axlsx/Bar3DChart.html#barDir-instance_method" title="Axlsx::Bar3DChart#barDir (method)">#barDir</a></span>
493
517
 
494
518
  <small>Axlsx::Bar3DChart</small>
@@ -496,7 +520,7 @@
496
520
  </li>
497
521
 
498
522
 
499
- <li class="r2 ">
523
+ <li class="r1 ">
500
524
  <span class='object_link'><a href="Axlsx/PatternFill.html#bgColor-instance_method" title="Axlsx::PatternFill#bgColor (method)">#bgColor</a></span>
501
525
 
502
526
  <small>Axlsx::PatternFill</small>
@@ -504,7 +528,7 @@
504
528
  </li>
505
529
 
506
530
 
507
- <li class="r1 ">
531
+ <li class="r2 ">
508
532
  <span class='object_link'><a href="Axlsx/Xf.html#borderId-instance_method" title="Axlsx::Xf#borderId (method)">#borderId</a></span>
509
533
 
510
534
  <small>Axlsx::Xf</small>
@@ -512,7 +536,7 @@
512
536
  </li>
513
537
 
514
538
 
515
- <li class="r2 ">
539
+ <li class="r1 ">
516
540
  <span class='object_link'><a href="Axlsx/Styles.html#borders-instance_method" title="Axlsx::Styles#borders (method)">#borders</a></span>
517
541
 
518
542
  <small>Axlsx::Styles</small>
@@ -520,7 +544,7 @@
520
544
  </li>
521
545
 
522
546
 
523
- <li class="r1 ">
547
+ <li class="r2 ">
524
548
  <span class='object_link'><a href="Axlsx/GradientFill.html#bottom-instance_method" title="Axlsx::GradientFill#bottom (method)">#bottom</a></span>
525
549
 
526
550
  <small>Axlsx::GradientFill</small>
@@ -528,7 +552,7 @@
528
552
  </li>
529
553
 
530
554
 
531
- <li class="r2 ">
555
+ <li class="r1 ">
532
556
  <span class='object_link'><a href="Axlsx/CellStyle.html#builtinId-instance_method" title="Axlsx::CellStyle#builtinId (method)">#builtinId</a></span>
533
557
 
534
558
  <small>Axlsx::CellStyle</small>
@@ -536,7 +560,7 @@
536
560
  </li>
537
561
 
538
562
 
539
- <li class="r1 ">
563
+ <li class="r2 ">
540
564
  <span class='object_link'><a href="Axlsx/Cell.html#cast_value-instance_method" title="Axlsx::Cell#cast_value (method)">#cast_value</a></span>
541
565
 
542
566
  <small>Axlsx::Cell</small>
@@ -544,23 +568,23 @@
544
568
  </li>
545
569
 
546
570
 
547
- <li class="r2 ">
548
- <span class='object_link'><a href="Axlsx/Bar3DChart.html#catAxis-instance_method" title="Axlsx::Bar3DChart#catAxis (method)">#catAxis</a></span>
571
+ <li class="r1 ">
572
+ <span class='object_link'><a href="Axlsx/Line3DChart.html#catAxis-instance_method" title="Axlsx::Line3DChart#catAxis (method)">#catAxis</a></span>
549
573
 
550
- <small>Axlsx::Bar3DChart</small>
574
+ <small>Axlsx::Line3DChart</small>
551
575
 
552
576
  </li>
553
577
 
554
578
 
555
- <li class="r1 ">
556
- <span class='object_link'><a href="Axlsx/Line3DChart.html#catAxis-instance_method" title="Axlsx::Line3DChart#catAxis (method)">#catAxis</a></span>
579
+ <li class="r2 ">
580
+ <span class='object_link'><a href="Axlsx/Bar3DChart.html#catAxis-instance_method" title="Axlsx::Bar3DChart#catAxis (method)">#catAxis</a></span>
557
581
 
558
- <small>Axlsx::Line3DChart</small>
582
+ <small>Axlsx::Bar3DChart</small>
559
583
 
560
584
  </li>
561
585
 
562
586
 
563
- <li class="r2 ">
587
+ <li class="r1 ">
564
588
  <span class='object_link'><a href="Axlsx/Title.html#cell-instance_method" title="Axlsx::Title#cell (method)">#cell</a></span>
565
589
 
566
590
  <small>Axlsx::Title</small>
@@ -568,7 +592,7 @@
568
592
  </li>
569
593
 
570
594
 
571
- <li class="r1 ">
595
+ <li class="r2 ">
572
596
  <span class='object_link'><a href="Axlsx/Styles.html#cellStyleXfs-instance_method" title="Axlsx::Styles#cellStyleXfs (method)">#cellStyleXfs</a></span>
573
597
 
574
598
  <small>Axlsx::Styles</small>
@@ -576,7 +600,7 @@
576
600
  </li>
577
601
 
578
602
 
579
- <li class="r2 ">
603
+ <li class="r1 ">
580
604
  <span class='object_link'><a href="Axlsx/Styles.html#cellStyles-instance_method" title="Axlsx::Styles#cellStyles (method)">#cellStyles</a></span>
581
605
 
582
606
  <small>Axlsx::Styles</small>
@@ -584,7 +608,7 @@
584
608
  </li>
585
609
 
586
610
 
587
- <li class="r1 ">
611
+ <li class="r2 ">
588
612
  <span class='object_link'><a href="Axlsx/Styles.html#cellXfs-instance_method" title="Axlsx::Styles#cellXfs (method)">#cellXfs</a></span>
589
613
 
590
614
  <small>Axlsx::Styles</small>
@@ -592,7 +616,7 @@
592
616
  </li>
593
617
 
594
618
 
595
- <li class="r2 ">
619
+ <li class="r1 ">
596
620
  <span class='object_link'><a href="Axlsx.html#cell_range-class_method" title="Axlsx.cell_range (method)">cell_range</a></span>
597
621
 
598
622
  <small>Axlsx</small>
@@ -600,7 +624,7 @@
600
624
  </li>
601
625
 
602
626
 
603
- <li class="r1 ">
627
+ <li class="r2 ">
604
628
  <span class='object_link'><a href="Axlsx/Cell.html#cell_type_from_value-instance_method" title="Axlsx::Cell#cell_type_from_value (method)">#cell_type_from_value</a></span>
605
629
 
606
630
  <small>Axlsx::Cell</small>
@@ -608,7 +632,7 @@
608
632
  </li>
609
633
 
610
634
 
611
- <li class="r2 ">
635
+ <li class="r1 ">
612
636
  <span class='object_link'><a href="Axlsx/Row.html#cells-instance_method" title="Axlsx::Row#cells (method)">#cells</a></span>
613
637
 
614
638
  <small>Axlsx::Row</small>
@@ -616,6 +640,14 @@
616
640
  </li>
617
641
 
618
642
 
643
+ <li class="r2 ">
644
+ <span class='object_link'><a href="Axlsx/Cell.html#charset-instance_method" title="Axlsx::Cell#charset (method)">#charset</a></span>
645
+
646
+ <small>Axlsx::Cell</small>
647
+
648
+ </li>
649
+
650
+
619
651
  <li class="r1 ">
620
652
  <span class='object_link'><a href="Axlsx/Font.html#charset-instance_method" title="Axlsx::Font#charset (method)">#charset</a></span>
621
653
 
@@ -625,33 +657,33 @@
625
657
 
626
658
 
627
659
  <li class="r2 ">
628
- <span class='object_link'><a href="Axlsx/GraphicFrame.html#chart-instance_method" title="Axlsx::GraphicFrame#chart (method)">#chart</a></span>
660
+ <span class='object_link'><a href="Axlsx/Series.html#chart-instance_method" title="Axlsx::Series#chart (method)">#chart</a></span>
629
661
 
630
- <small>Axlsx::GraphicFrame</small>
662
+ <small>Axlsx::Series</small>
631
663
 
632
664
  </li>
633
665
 
634
666
 
635
667
  <li class="r1 ">
636
- <span class='object_link'><a href="Axlsx/Series.html#chart-instance_method" title="Axlsx::Series#chart (method)">#chart</a></span>
668
+ <span class='object_link'><a href="Axlsx/GraphicFrame.html#chart-instance_method" title="Axlsx::GraphicFrame#chart (method)">#chart</a></span>
637
669
 
638
- <small>Axlsx::Series</small>
670
+ <small>Axlsx::GraphicFrame</small>
639
671
 
640
672
  </li>
641
673
 
642
674
 
643
675
  <li class="r2 ">
644
- <span class='object_link'><a href="Axlsx/Drawing.html#charts-instance_method" title="Axlsx::Drawing#charts (method)">#charts</a></span>
676
+ <span class='object_link'><a href="Axlsx/Workbook.html#charts-instance_method" title="Axlsx::Workbook#charts (method)">#charts</a></span>
645
677
 
646
- <small>Axlsx::Drawing</small>
678
+ <small>Axlsx::Workbook</small>
647
679
 
648
680
  </li>
649
681
 
650
682
 
651
683
  <li class="r1 ">
652
- <span class='object_link'><a href="Axlsx/Workbook.html#charts-instance_method" title="Axlsx::Workbook#charts (method)">#charts</a></span>
684
+ <span class='object_link'><a href="Axlsx/Drawing.html#charts-instance_method" title="Axlsx::Drawing#charts (method)">#charts</a></span>
653
685
 
654
- <small>Axlsx::Workbook</small>
686
+ <small>Axlsx::Drawing</small>
655
687
 
656
688
  </li>
657
689
 
@@ -689,22 +721,30 @@
689
721
 
690
722
 
691
723
  <li class="r2 ">
692
- <span class='object_link'><a href="Axlsx/GradientStop.html#color-instance_method" title="Axlsx::GradientStop#color (method)">#color</a></span>
724
+ <span class='object_link'><a href="Axlsx/Font.html#color-instance_method" title="Axlsx::Font#color (method)">#color</a></span>
693
725
 
694
- <small>Axlsx::GradientStop</small>
726
+ <small>Axlsx::Font</small>
695
727
 
696
728
  </li>
697
729
 
698
730
 
699
731
  <li class="r1 ">
700
- <span class='object_link'><a href="Axlsx/Font.html#color-instance_method" title="Axlsx::Font#color (method)">#color</a></span>
732
+ <span class='object_link'><a href="Axlsx/Cell.html#color-instance_method" title="Axlsx::Cell#color (method)">#color</a></span>
701
733
 
702
- <small>Axlsx::Font</small>
734
+ <small>Axlsx::Cell</small>
703
735
 
704
736
  </li>
705
737
 
706
738
 
707
739
  <li class="r2 ">
740
+ <span class='object_link'><a href="Axlsx/GradientStop.html#color-instance_method" title="Axlsx::GradientStop#color (method)">#color</a></span>
741
+
742
+ <small>Axlsx::GradientStop</small>
743
+
744
+ </li>
745
+
746
+
747
+ <li class="r1 ">
708
748
  <span class='object_link'><a href="Axlsx/BorderPr.html#color-instance_method" title="Axlsx::BorderPr#color (method)">#color</a></span>
709
749
 
710
750
  <small>Axlsx::BorderPr</small>
@@ -712,7 +752,7 @@
712
752
  </li>
713
753
 
714
754
 
715
- <li class="r1 ">
755
+ <li class="r2 ">
716
756
  <span class='object_link'><a href="Axlsx/Worksheet.html#cols-instance_method" title="Axlsx::Worksheet#cols (method)">#cols</a></span>
717
757
 
718
758
  <small>Axlsx::Worksheet</small>
@@ -720,6 +760,14 @@
720
760
  </li>
721
761
 
722
762
 
763
+ <li class="r1 ">
764
+ <span class='object_link'><a href="Axlsx/Cell.html#condense-instance_method" title="Axlsx::Cell#condense (method)">#condense</a></span>
765
+
766
+ <small>Axlsx::Cell</small>
767
+
768
+ </li>
769
+
770
+
723
771
  <li class="r2 ">
724
772
  <span class='object_link'><a href="Axlsx/Font.html#condense-instance_method" title="Axlsx::Font#condense (method)">#condense</a></span>
725
773
 
@@ -777,9 +825,9 @@
777
825
 
778
826
 
779
827
  <li class="r1 ">
780
- <span class='object_link'><a href="Axlsx/LineSeries.html#data-instance_method" title="Axlsx::LineSeries#data (method)">#data</a></span>
828
+ <span class='object_link'><a href="Axlsx/BarSeries.html#data-instance_method" title="Axlsx::BarSeries#data (method)">#data</a></span>
781
829
 
782
- <small>Axlsx::LineSeries</small>
830
+ <small>Axlsx::BarSeries</small>
783
831
 
784
832
  </li>
785
833
 
@@ -793,15 +841,15 @@
793
841
 
794
842
 
795
843
  <li class="r1 ">
796
- <span class='object_link'><a href="Axlsx/BarSeries.html#data-instance_method" title="Axlsx::BarSeries#data (method)">#data</a></span>
844
+ <span class='object_link'><a href="Axlsx/LineSeries.html#data-instance_method" title="Axlsx::LineSeries#data (method)">#data</a></span>
797
845
 
798
- <small>Axlsx::BarSeries</small>
846
+ <small>Axlsx::LineSeries</small>
799
847
 
800
848
  </li>
801
849
 
802
850
 
803
851
  <li class="r2 ">
804
- <span class='object_link'><a href="Axlsx/Workbook.html#date1904-class_method" title="Axlsx::Workbook.date1904 (method)">date1904</a></span>
852
+ <span class='object_link'><a href="Axlsx/Workbook.html#date1904-instance_method" title="Axlsx::Workbook#date1904 (method)">#date1904</a></span>
805
853
 
806
854
  <small>Axlsx::Workbook</small>
807
855
 
@@ -809,7 +857,7 @@
809
857
 
810
858
 
811
859
  <li class="r1 ">
812
- <span class='object_link'><a href="Axlsx/Workbook.html#date1904-instance_method" title="Axlsx::Workbook#date1904 (method)">#date1904</a></span>
860
+ <span class='object_link'><a href="Axlsx/Workbook.html#date1904-class_method" title="Axlsx::Workbook.date1904 (method)">date1904</a></span>
813
861
 
814
862
  <small>Axlsx::Workbook</small>
815
863
 
@@ -953,6 +1001,14 @@
953
1001
 
954
1002
 
955
1003
  <li class="r1 ">
1004
+ <span class='object_link'><a href="Axlsx/Cell.html#extend-instance_method" title="Axlsx::Cell#extend (method)">#extend</a></span>
1005
+
1006
+ <small>Axlsx::Cell</small>
1007
+
1008
+ </li>
1009
+
1010
+
1011
+ <li class="r2 ">
956
1012
  <span class='object_link'><a href="Axlsx/Font.html#extend-instance_method" title="Axlsx::Font#extend (method)">#extend</a></span>
957
1013
 
958
1014
  <small>Axlsx::Font</small>
@@ -960,7 +1016,7 @@
960
1016
  </li>
961
1017
 
962
1018
 
963
- <li class="r2 ">
1019
+ <li class="r1 ">
964
1020
  <span class='object_link'><a href="Axlsx/Pic.html#extname-instance_method" title="Axlsx::Pic#extname (method)">#extname</a></span>
965
1021
 
966
1022
  <small>Axlsx::Pic</small>
@@ -968,6 +1024,14 @@
968
1024
  </li>
969
1025
 
970
1026
 
1027
+ <li class="r2 ">
1028
+ <span class='object_link'><a href="Axlsx/Cell.html#family-instance_method" title="Axlsx::Cell#family (method)">#family</a></span>
1029
+
1030
+ <small>Axlsx::Cell</small>
1031
+
1032
+ </li>
1033
+
1034
+
971
1035
  <li class="r1 ">
972
1036
  <span class='object_link'><a href="Axlsx/Font.html#family-instance_method" title="Axlsx::Font#family (method)">#family</a></span>
973
1037
 
@@ -1025,6 +1089,14 @@
1025
1089
 
1026
1090
 
1027
1091
  <li class="r2 ">
1092
+ <span class='object_link'><a href="Axlsx/Cell.html#font_name-instance_method" title="Axlsx::Cell#font_name (method)">#font_name</a></span>
1093
+
1094
+ <small>Axlsx::Cell</small>
1095
+
1096
+ </li>
1097
+
1098
+
1099
+ <li class="r1 ">
1028
1100
  <span class='object_link'><a href="Axlsx/Styles.html#fonts-instance_method" title="Axlsx::Styles#fonts (method)">#fonts</a></span>
1029
1101
 
1030
1102
  <small>Axlsx::Styles</small>
@@ -1032,7 +1104,7 @@
1032
1104
  </li>
1033
1105
 
1034
1106
 
1035
- <li class="r1 ">
1107
+ <li class="r2 ">
1036
1108
  <span class='object_link'><a href="Axlsx/NumFmt.html#formatCode-instance_method" title="Axlsx::NumFmt#formatCode (method)">#formatCode</a></span>
1037
1109
 
1038
1110
  <small>Axlsx::NumFmt</small>
@@ -1040,7 +1112,7 @@
1040
1112
  </li>
1041
1113
 
1042
1114
 
1043
- <li class="r2 ">
1115
+ <li class="r1 ">
1044
1116
  <span class='object_link'><a href="Axlsx/Axis.html#format_code-instance_method" title="Axlsx::Axis#format_code (method)">#format_code</a></span>
1045
1117
 
1046
1118
  <small>Axlsx::Axis</small>
@@ -1048,15 +1120,15 @@
1048
1120
  </li>
1049
1121
 
1050
1122
 
1051
- <li class="r1 ">
1052
- <span class='object_link'><a href="Axlsx/OneCellAnchor.html#from-instance_method" title="Axlsx::OneCellAnchor#from (method)">#from</a></span>
1123
+ <li class="r2 ">
1124
+ <span class='object_link'><a href="Axlsx/TwoCellAnchor.html#from-instance_method" title="Axlsx::TwoCellAnchor#from (method)">#from</a></span>
1053
1125
 
1054
- <small>Axlsx::OneCellAnchor</small>
1126
+ <small>Axlsx::TwoCellAnchor</small>
1055
1127
 
1056
1128
  </li>
1057
1129
 
1058
1130
 
1059
- <li class="r2 ">
1131
+ <li class="r1 ">
1060
1132
  <span class='object_link'><a href="Axlsx/Chart.html#from-instance_method" title="Axlsx::Chart#from (method)">#from</a></span>
1061
1133
 
1062
1134
  <small>Axlsx::Chart</small>
@@ -1064,15 +1136,15 @@
1064
1136
  </li>
1065
1137
 
1066
1138
 
1067
- <li class="r1 ">
1068
- <span class='object_link'><a href="Axlsx/TwoCellAnchor.html#from-instance_method" title="Axlsx::TwoCellAnchor#from (method)">#from</a></span>
1139
+ <li class="r2 ">
1140
+ <span class='object_link'><a href="Axlsx/OneCellAnchor.html#from-instance_method" title="Axlsx::OneCellAnchor#from (method)">#from</a></span>
1069
1141
 
1070
- <small>Axlsx::TwoCellAnchor</small>
1142
+ <small>Axlsx::OneCellAnchor</small>
1071
1143
 
1072
1144
  </li>
1073
1145
 
1074
1146
 
1075
- <li class="r2 ">
1147
+ <li class="r1 ">
1076
1148
  <span class='object_link'><a href="Axlsx/Bar3DChart.html#gapDepth-instance_method" title="Axlsx::Bar3DChart#gapDepth (method)">#gapDepth</a></span>
1077
1149
 
1078
1150
  <small>Axlsx::Bar3DChart</small>
@@ -1080,7 +1152,7 @@
1080
1152
  </li>
1081
1153
 
1082
1154
 
1083
- <li class="r1 ">
1155
+ <li class="r2 ">
1084
1156
  <span class='object_link'><a href="Axlsx/Line3DChart.html#gapDepth-instance_method" title="Axlsx::Line3DChart#gapDepth (method)">#gapDepth</a></span>
1085
1157
 
1086
1158
  <small>Axlsx::Line3DChart</small>
@@ -1088,7 +1160,7 @@
1088
1160
  </li>
1089
1161
 
1090
1162
 
1091
- <li class="r2 ">
1163
+ <li class="r1 ">
1092
1164
  <span class='object_link'><a href="Axlsx/Bar3DChart.html#gapWidth-instance_method" title="Axlsx::Bar3DChart#gapWidth (method)">#gapWidth</a></span>
1093
1165
 
1094
1166
  <small>Axlsx::Bar3DChart</small>
@@ -1096,7 +1168,7 @@
1096
1168
  </li>
1097
1169
 
1098
1170
 
1099
- <li class="r1 ">
1171
+ <li class="r2 ">
1100
1172
  <span class='object_link'><a href="Axlsx/Chart.html#graphic_frame-instance_method" title="Axlsx::Chart#graphic_frame (method)">#graphic_frame</a></span>
1101
1173
 
1102
1174
  <small>Axlsx::Chart</small>
@@ -1104,14 +1176,6 @@
1104
1176
  </li>
1105
1177
 
1106
1178
 
1107
- <li class="r2 ">
1108
- <span class='object_link'><a href="Axlsx/Line3DChart.html#grouping-instance_method" title="Axlsx::Line3DChart#grouping (method)">#grouping</a></span>
1109
-
1110
- <small>Axlsx::Line3DChart</small>
1111
-
1112
- </li>
1113
-
1114
-
1115
1179
  <li class="r1 ">
1116
1180
  <span class='object_link'><a href="Axlsx/Bar3DChart.html#grouping-instance_method" title="Axlsx::Bar3DChart#grouping (method)">#grouping</a></span>
1117
1181
 
@@ -1121,17 +1185,17 @@
1121
1185
 
1122
1186
 
1123
1187
  <li class="r2 ">
1124
- <span class='object_link'><a href="Axlsx/View3D.html#hPercent-instance_method" title="Axlsx::View3D#hPercent (method)">#hPercent</a></span>
1188
+ <span class='object_link'><a href="Axlsx/Line3DChart.html#grouping-instance_method" title="Axlsx::Line3DChart#grouping (method)">#grouping</a></span>
1125
1189
 
1126
- <small>Axlsx::View3D</small>
1190
+ <small>Axlsx::Line3DChart</small>
1127
1191
 
1128
1192
  </li>
1129
1193
 
1130
1194
 
1131
1195
  <li class="r1 ">
1132
- <span class='object_link'><a href="Axlsx/Pic.html#height-instance_method" title="Axlsx::Pic#height (method)">#height</a></span>
1196
+ <span class='object_link'><a href="Axlsx/View3D.html#hPercent-instance_method" title="Axlsx::View3D#hPercent (method)">#hPercent</a></span>
1133
1197
 
1134
- <small>Axlsx::Pic</small>
1198
+ <small>Axlsx::View3D</small>
1135
1199
 
1136
1200
  </li>
1137
1201
 
@@ -1145,7 +1209,7 @@
1145
1209
 
1146
1210
 
1147
1211
  <li class="r1 ">
1148
- <span class='object_link'><a href="Axlsx/Pic.html#height%3D-instance_method" title="Axlsx::Pic#height= (method)">#height=</a></span>
1212
+ <span class='object_link'><a href="Axlsx/Pic.html#height-instance_method" title="Axlsx::Pic#height (method)">#height</a></span>
1149
1213
 
1150
1214
  <small>Axlsx::Pic</small>
1151
1215
 
@@ -1153,6 +1217,14 @@
1153
1217
 
1154
1218
 
1155
1219
  <li class="r2 ">
1220
+ <span class='object_link'><a href="Axlsx/Pic.html#height%3D-instance_method" title="Axlsx::Pic#height= (method)">#height=</a></span>
1221
+
1222
+ <small>Axlsx::Pic</small>
1223
+
1224
+ </li>
1225
+
1226
+
1227
+ <li class="r1 ">
1156
1228
  <span class='object_link'><a href="Axlsx/CellStyle.html#hidden-instance_method" title="Axlsx::CellStyle#hidden (method)">#hidden</a></span>
1157
1229
 
1158
1230
  <small>Axlsx::CellStyle</small>
@@ -1160,7 +1232,7 @@
1160
1232
  </li>
1161
1233
 
1162
1234
 
1163
- <li class="r1 ">
1235
+ <li class="r2 ">
1164
1236
  <span class='object_link'><a href="Axlsx/CellProtection.html#hidden-instance_method" title="Axlsx::CellProtection#hidden (method)">#hidden</a></span>
1165
1237
 
1166
1238
  <small>Axlsx::CellProtection</small>
@@ -1168,7 +1240,7 @@
1168
1240
  </li>
1169
1241
 
1170
1242
 
1171
- <li class="r2 ">
1243
+ <li class="r1 ">
1172
1244
  <span class='object_link'><a href="Axlsx/CellAlignment.html#horizontal-instance_method" title="Axlsx::CellAlignment#horizontal (method)">#horizontal</a></span>
1173
1245
 
1174
1246
  <small>Axlsx::CellAlignment</small>
@@ -1176,7 +1248,7 @@
1176
1248
  </li>
1177
1249
 
1178
1250
 
1179
- <li class="r1 ">
1251
+ <li class="r2 ">
1180
1252
  <span class='object_link'><a href="Axlsx/Font.html#i-instance_method" title="Axlsx::Font#i (method)">#i</a></span>
1181
1253
 
1182
1254
  <small>Axlsx::Font</small>
@@ -1184,6 +1256,14 @@
1184
1256
  </li>
1185
1257
 
1186
1258
 
1259
+ <li class="r1 ">
1260
+ <span class='object_link'><a href="Axlsx/Cell.html#i-instance_method" title="Axlsx::Cell#i (method)">#i</a></span>
1261
+
1262
+ <small>Axlsx::Cell</small>
1263
+
1264
+ </li>
1265
+
1266
+
1187
1267
  <li class="r2 ">
1188
1268
  <span class='object_link'><a href="Axlsx/CellStyle.html#iLevel-instance_method" title="Axlsx::CellStyle#iLevel (method)">#iLevel</a></span>
1189
1269
 
@@ -1201,17 +1281,17 @@
1201
1281
 
1202
1282
 
1203
1283
  <li class="r2 ">
1204
- <span class='object_link'><a href="Axlsx/Workbook.html#images-instance_method" title="Axlsx::Workbook#images (method)">#images</a></span>
1284
+ <span class='object_link'><a href="Axlsx/Drawing.html#images-instance_method" title="Axlsx::Drawing#images (method)">#images</a></span>
1205
1285
 
1206
- <small>Axlsx::Workbook</small>
1286
+ <small>Axlsx::Drawing</small>
1207
1287
 
1208
1288
  </li>
1209
1289
 
1210
1290
 
1211
1291
  <li class="r1 ">
1212
- <span class='object_link'><a href="Axlsx/Drawing.html#images-instance_method" title="Axlsx::Drawing#images (method)">#images</a></span>
1292
+ <span class='object_link'><a href="Axlsx/Workbook.html#images-instance_method" title="Axlsx::Workbook#images (method)">#images</a></span>
1213
1293
 
1214
- <small>Axlsx::Drawing</small>
1294
+ <small>Axlsx::Workbook</small>
1215
1295
 
1216
1296
  </li>
1217
1297
 
@@ -1225,73 +1305,73 @@
1225
1305
 
1226
1306
 
1227
1307
  <li class="r1 ">
1228
- <span class='object_link'><a href="Axlsx/Row.html#index-instance_method" title="Axlsx::Row#index (method)">#index</a></span>
1308
+ <span class='object_link'><a href="Axlsx/Drawing.html#index-instance_method" title="Axlsx::Drawing#index (method)">#index</a></span>
1229
1309
 
1230
- <small>Axlsx::Row</small>
1310
+ <small>Axlsx::Drawing</small>
1231
1311
 
1232
1312
  </li>
1233
1313
 
1234
1314
 
1235
1315
  <li class="r2 ">
1236
- <span class='object_link'><a href="Axlsx/Worksheet.html#index-instance_method" title="Axlsx::Worksheet#index (method)">#index</a></span>
1316
+ <span class='object_link'><a href="Axlsx/Pic.html#index-instance_method" title="Axlsx::Pic#index (method)">#index</a></span>
1237
1317
 
1238
- <small>Axlsx::Worksheet</small>
1318
+ <small>Axlsx::Pic</small>
1239
1319
 
1240
1320
  </li>
1241
1321
 
1242
1322
 
1243
1323
  <li class="r1 ">
1244
- <span class='object_link'><a href="Axlsx/Drawing.html#index-instance_method" title="Axlsx::Drawing#index (method)">#index</a></span>
1324
+ <span class='object_link'><a href="Axlsx/OneCellAnchor.html#index-instance_method" title="Axlsx::OneCellAnchor#index (method)">#index</a></span>
1245
1325
 
1246
- <small>Axlsx::Drawing</small>
1326
+ <small>Axlsx::OneCellAnchor</small>
1247
1327
 
1248
1328
  </li>
1249
1329
 
1250
1330
 
1251
1331
  <li class="r2 ">
1252
- <span class='object_link'><a href="Axlsx/Series.html#index-instance_method" title="Axlsx::Series#index (method)">#index</a></span>
1332
+ <span class='object_link'><a href="Axlsx/Row.html#index-instance_method" title="Axlsx::Row#index (method)">#index</a></span>
1253
1333
 
1254
- <small>Axlsx::Series</small>
1334
+ <small>Axlsx::Row</small>
1255
1335
 
1256
1336
  </li>
1257
1337
 
1258
1338
 
1259
1339
  <li class="r1 ">
1260
- <span class='object_link'><a href="Axlsx/Cell.html#index-instance_method" title="Axlsx::Cell#index (method)">#index</a></span>
1340
+ <span class='object_link'><a href="Axlsx/Worksheet.html#index-instance_method" title="Axlsx::Worksheet#index (method)">#index</a></span>
1261
1341
 
1262
- <small>Axlsx::Cell</small>
1342
+ <small>Axlsx::Worksheet</small>
1263
1343
 
1264
1344
  </li>
1265
1345
 
1266
1346
 
1267
1347
  <li class="r2 ">
1268
- <span class='object_link'><a href="Axlsx/TwoCellAnchor.html#index-instance_method" title="Axlsx::TwoCellAnchor#index (method)">#index</a></span>
1348
+ <span class='object_link'><a href="Axlsx/Series.html#index-instance_method" title="Axlsx::Series#index (method)">#index</a></span>
1269
1349
 
1270
- <small>Axlsx::TwoCellAnchor</small>
1350
+ <small>Axlsx::Series</small>
1271
1351
 
1272
1352
  </li>
1273
1353
 
1274
1354
 
1275
1355
  <li class="r1 ">
1276
- <span class='object_link'><a href="Axlsx/Chart.html#index-instance_method" title="Axlsx::Chart#index (method)">#index</a></span>
1356
+ <span class='object_link'><a href="Axlsx/Cell.html#index-instance_method" title="Axlsx::Cell#index (method)">#index</a></span>
1277
1357
 
1278
- <small>Axlsx::Chart</small>
1358
+ <small>Axlsx::Cell</small>
1279
1359
 
1280
1360
  </li>
1281
1361
 
1282
1362
 
1283
1363
  <li class="r2 ">
1284
- <span class='object_link'><a href="Axlsx/OneCellAnchor.html#index-instance_method" title="Axlsx::OneCellAnchor#index (method)">#index</a></span>
1364
+ <span class='object_link'><a href="Axlsx/Chart.html#index-instance_method" title="Axlsx::Chart#index (method)">#index</a></span>
1285
1365
 
1286
- <small>Axlsx::OneCellAnchor</small>
1366
+ <small>Axlsx::Chart</small>
1287
1367
 
1288
1368
  </li>
1289
1369
 
1290
1370
 
1291
1371
  <li class="r1 ">
1292
- <span class='object_link'><a href="Axlsx/Pic.html#index-instance_method" title="Axlsx::Pic#index (method)">#index</a></span>
1372
+ <span class='object_link'><a href="Axlsx/TwoCellAnchor.html#index-instance_method" title="Axlsx::TwoCellAnchor#index (method)">#index</a></span>
1293
1373
 
1294
- <small>Axlsx::Pic</small>
1374
+ <small>Axlsx::TwoCellAnchor</small>
1295
1375
 
1296
1376
  </li>
1297
1377
 
@@ -1305,49 +1385,65 @@
1305
1385
 
1306
1386
 
1307
1387
  <li class="r1 ">
1308
- <span class='object_link'><a href="Axlsx/Bar3DChart.html#initialize-instance_method" title="Axlsx::Bar3DChart#initialize (method)">#initialize</a></span>
1388
+ <span class='object_link'><a href="Axlsx/Title.html#initialize-instance_method" title="Axlsx::Title#initialize (method)">#initialize</a></span>
1309
1389
 
1310
- <small>Axlsx::Bar3DChart</small>
1390
+ <small>Axlsx::Title</small>
1311
1391
 
1312
1392
  </li>
1313
1393
 
1314
1394
 
1315
1395
  <li class="r2 ">
1316
- <span class='object_link'><a href="Axlsx/GradientFill.html#initialize-instance_method" title="Axlsx::GradientFill#initialize (method)">#initialize</a></span>
1396
+ <span class='object_link'><a href="Axlsx/Default.html#initialize-instance_method" title="Axlsx::Default#initialize (method)">#initialize</a></span>
1317
1397
 
1318
- <small>Axlsx::GradientFill</small>
1398
+ <small>Axlsx::Default</small>
1319
1399
 
1320
1400
  </li>
1321
1401
 
1322
1402
 
1323
1403
  <li class="r1 ">
1324
- <span class='object_link'><a href="Axlsx/Core.html#initialize-instance_method" title="Axlsx::Core#initialize (method)">#initialize</a></span>
1404
+ <span class='object_link'><a href="Axlsx/TableStyleElement.html#initialize-instance_method" title="Axlsx::TableStyleElement#initialize (method)">#initialize</a></span>
1325
1405
 
1326
- <small>Axlsx::Core</small>
1406
+ <small>Axlsx::TableStyleElement</small>
1327
1407
 
1328
1408
  </li>
1329
1409
 
1330
1410
 
1331
1411
  <li class="r2 ">
1332
- <span class='object_link'><a href="Axlsx/Scaling.html#initialize-instance_method" title="Axlsx::Scaling#initialize (method)">#initialize</a></span>
1412
+ <span class='object_link'><a href="Axlsx/CellProtection.html#initialize-instance_method" title="Axlsx::CellProtection#initialize (method)">#initialize</a></span>
1333
1413
 
1334
- <small>Axlsx::Scaling</small>
1414
+ <small>Axlsx::CellProtection</small>
1335
1415
 
1336
1416
  </li>
1337
1417
 
1338
1418
 
1339
1419
  <li class="r1 ">
1340
- <span class='object_link'><a href="Axlsx/Styles.html#initialize-instance_method" title="Axlsx::Styles#initialize (method)">#initialize</a></span>
1420
+ <span class='object_link'><a href="Axlsx/Axis.html#initialize-instance_method" title="Axlsx::Axis#initialize (method)">#initialize</a></span>
1341
1421
 
1342
- <small>Axlsx::Styles</small>
1422
+ <small>Axlsx::Axis</small>
1343
1423
 
1344
1424
  </li>
1345
1425
 
1346
1426
 
1347
1427
  <li class="r2 ">
1348
- <span class='object_link'><a href="Axlsx/TableStyles.html#initialize-instance_method" title="Axlsx::TableStyles#initialize (method)">#initialize</a></span>
1428
+ <span class='object_link'><a href="Axlsx/Core.html#initialize-instance_method" title="Axlsx::Core#initialize (method)">#initialize</a></span>
1349
1429
 
1350
- <small>Axlsx::TableStyles</small>
1430
+ <small>Axlsx::Core</small>
1431
+
1432
+ </li>
1433
+
1434
+
1435
+ <li class="r1 ">
1436
+ <span class='object_link'><a href="Axlsx/GradientFill.html#initialize-instance_method" title="Axlsx::GradientFill#initialize (method)">#initialize</a></span>
1437
+
1438
+ <small>Axlsx::GradientFill</small>
1439
+
1440
+ </li>
1441
+
1442
+
1443
+ <li class="r2 ">
1444
+ <span class='object_link'><a href="Axlsx/ContentType.html#initialize-instance_method" title="Axlsx::ContentType#initialize (method)">#initialize</a></span>
1445
+
1446
+ <small>Axlsx::ContentType</small>
1351
1447
 
1352
1448
  </li>
1353
1449
 
@@ -1361,30 +1457,38 @@
1361
1457
 
1362
1458
 
1363
1459
  <li class="r2 ">
1364
- <span class='object_link'><a href="Axlsx/Workbook.html#initialize-instance_method" title="Axlsx::Workbook#initialize (method)">#initialize</a></span>
1460
+ <span class='object_link'><a href="Axlsx/Package.html#initialize-instance_method" title="Axlsx::Package#initialize (method)">#initialize</a></span>
1365
1461
 
1366
- <small>Axlsx::Workbook</small>
1462
+ <small>Axlsx::Package</small>
1367
1463
 
1368
1464
  </li>
1369
1465
 
1370
1466
 
1371
1467
  <li class="r1 ">
1372
- <span class='object_link'><a href="Axlsx/Drawing.html#initialize-instance_method" title="Axlsx::Drawing#initialize (method)">#initialize</a></span>
1468
+ <span class='object_link'><a href="Axlsx/Pie3DChart.html#initialize-instance_method" title="Axlsx::Pie3DChart#initialize (method)">#initialize</a></span>
1373
1469
 
1374
- <small>Axlsx::Drawing</small>
1470
+ <small>Axlsx::Pie3DChart</small>
1375
1471
 
1376
1472
  </li>
1377
1473
 
1378
1474
 
1379
1475
  <li class="r2 ">
1380
- <span class='object_link'><a href="Axlsx/GradientStop.html#initialize-instance_method" title="Axlsx::GradientStop#initialize (method)">#initialize</a></span>
1476
+ <span class='object_link'><a href="Axlsx/Override.html#initialize-instance_method" title="Axlsx::Override#initialize (method)">#initialize</a></span>
1381
1477
 
1382
- <small>Axlsx::GradientStop</small>
1478
+ <small>Axlsx::Override</small>
1383
1479
 
1384
1480
  </li>
1385
1481
 
1386
1482
 
1387
1483
  <li class="r1 ">
1484
+ <span class='object_link'><a href="Axlsx/NumFmt.html#initialize-instance_method" title="Axlsx::NumFmt#initialize (method)">#initialize</a></span>
1485
+
1486
+ <small>Axlsx::NumFmt</small>
1487
+
1488
+ </li>
1489
+
1490
+
1491
+ <li class="r2 ">
1388
1492
  <span class='object_link'><a href="Axlsx/Chart.html#initialize-instance_method" title="Axlsx::Chart#initialize (method)">#initialize</a></span>
1389
1493
 
1390
1494
  <small>Axlsx::Chart</small>
@@ -1392,18 +1496,58 @@
1392
1496
  </li>
1393
1497
 
1394
1498
 
1499
+ <li class="r1 ">
1500
+ <span class='object_link'><a href="Axlsx/Scaling.html#initialize-instance_method" title="Axlsx::Scaling#initialize (method)">#initialize</a></span>
1501
+
1502
+ <small>Axlsx::Scaling</small>
1503
+
1504
+ </li>
1505
+
1506
+
1395
1507
  <li class="r2 ">
1396
- <span class='object_link'><a href="Axlsx/Line3DChart.html#initialize-instance_method" title="Axlsx::Line3DChart#initialize (method)">#initialize</a></span>
1508
+ <span class='object_link'><a href="Axlsx/Pic.html#initialize-instance_method" title="Axlsx::Pic#initialize (method)">#initialize</a></span>
1397
1509
 
1398
- <small>Axlsx::Line3DChart</small>
1510
+ <small>Axlsx::Pic</small>
1399
1511
 
1400
1512
  </li>
1401
1513
 
1402
1514
 
1403
1515
  <li class="r1 ">
1404
- <span class='object_link'><a href="Axlsx/ContentType.html#initialize-instance_method" title="Axlsx::ContentType#initialize (method)">#initialize</a></span>
1516
+ <span class='object_link'><a href="Axlsx/PatternFill.html#initialize-instance_method" title="Axlsx::PatternFill#initialize (method)">#initialize</a></span>
1405
1517
 
1406
- <small>Axlsx::ContentType</small>
1518
+ <small>Axlsx::PatternFill</small>
1519
+
1520
+ </li>
1521
+
1522
+
1523
+ <li class="r2 ">
1524
+ <span class='object_link'><a href="Axlsx/Relationship.html#initialize-instance_method" title="Axlsx::Relationship#initialize (method)">#initialize</a></span>
1525
+
1526
+ <small>Axlsx::Relationship</small>
1527
+
1528
+ </li>
1529
+
1530
+
1531
+ <li class="r1 ">
1532
+ <span class='object_link'><a href="Axlsx/BarSeries.html#initialize-instance_method" title="Axlsx::BarSeries#initialize (method)">#initialize</a></span>
1533
+
1534
+ <small>Axlsx::BarSeries</small>
1535
+
1536
+ </li>
1537
+
1538
+
1539
+ <li class="r2 ">
1540
+ <span class='object_link'><a href="Axlsx/Border.html#initialize-instance_method" title="Axlsx::Border#initialize (method)">#initialize</a></span>
1541
+
1542
+ <small>Axlsx::Border</small>
1543
+
1544
+ </li>
1545
+
1546
+
1547
+ <li class="r1 ">
1548
+ <span class='object_link'><a href="Axlsx/GraphicFrame.html#initialize-instance_method" title="Axlsx::GraphicFrame#initialize (method)">#initialize</a></span>
1549
+
1550
+ <small>Axlsx::GraphicFrame</small>
1407
1551
 
1408
1552
  </li>
1409
1553
 
@@ -1417,94 +1561,102 @@
1417
1561
 
1418
1562
 
1419
1563
  <li class="r1 ">
1420
- <span class='object_link'><a href="Axlsx/NumFmt.html#initialize-instance_method" title="Axlsx::NumFmt#initialize (method)">#initialize</a></span>
1564
+ <span class='object_link'><a href="Axlsx/TableStyle.html#initialize-instance_method" title="Axlsx::TableStyle#initialize (method)">#initialize</a></span>
1421
1565
 
1422
- <small>Axlsx::NumFmt</small>
1566
+ <small>Axlsx::TableStyle</small>
1423
1567
 
1424
1568
  </li>
1425
1569
 
1426
1570
 
1427
1571
  <li class="r2 ">
1428
- <span class='object_link'><a href="Axlsx/ValAxis.html#initialize-instance_method" title="Axlsx::ValAxis#initialize (method)">#initialize</a></span>
1572
+ <span class='object_link'><a href="Axlsx/SerAxis.html#initialize-instance_method" title="Axlsx::SerAxis#initialize (method)">#initialize</a></span>
1429
1573
 
1430
- <small>Axlsx::ValAxis</small>
1574
+ <small>Axlsx::SerAxis</small>
1431
1575
 
1432
1576
  </li>
1433
1577
 
1434
1578
 
1435
1579
  <li class="r1 ">
1436
- <span class='object_link'><a href="Axlsx/Series.html#initialize-instance_method" title="Axlsx::Series#initialize (method)">#initialize</a></span>
1580
+ <span class='object_link'><a href="Axlsx/TwoCellAnchor.html#initialize-instance_method" title="Axlsx::TwoCellAnchor#initialize (method)">#initialize</a></span>
1437
1581
 
1438
- <small>Axlsx::Series</small>
1582
+ <small>Axlsx::TwoCellAnchor</small>
1439
1583
 
1440
1584
  </li>
1441
1585
 
1442
1586
 
1443
1587
  <li class="r2 ">
1444
- <span class='object_link'><a href="Axlsx/LineSeries.html#initialize-instance_method" title="Axlsx::LineSeries#initialize (method)">#initialize</a></span>
1588
+ <span class='object_link'><a href="Axlsx/Styles.html#initialize-instance_method" title="Axlsx::Styles#initialize (method)">#initialize</a></span>
1445
1589
 
1446
- <small>Axlsx::LineSeries</small>
1590
+ <small>Axlsx::Styles</small>
1447
1591
 
1448
1592
  </li>
1449
1593
 
1450
1594
 
1451
1595
  <li class="r1 ">
1452
- <span class='object_link'><a href="Axlsx/Marker.html#initialize-instance_method" title="Axlsx::Marker#initialize (method)">#initialize</a></span>
1596
+ <span class='object_link'><a href="Axlsx/Bar3DChart.html#initialize-instance_method" title="Axlsx::Bar3DChart#initialize (method)">#initialize</a></span>
1453
1597
 
1454
- <small>Axlsx::Marker</small>
1598
+ <small>Axlsx::Bar3DChart</small>
1455
1599
 
1456
1600
  </li>
1457
1601
 
1458
1602
 
1459
1603
  <li class="r2 ">
1460
- <span class='object_link'><a href="Axlsx/Default.html#initialize-instance_method" title="Axlsx::Default#initialize (method)">#initialize</a></span>
1604
+ <span class='object_link'><a href="Axlsx/Row.html#initialize-instance_method" title="Axlsx::Row#initialize (method)">#initialize</a></span>
1461
1605
 
1462
- <small>Axlsx::Default</small>
1606
+ <small>Axlsx::Row</small>
1463
1607
 
1464
1608
  </li>
1465
1609
 
1466
1610
 
1467
1611
  <li class="r1 ">
1468
- <span class='object_link'><a href="Axlsx/Override.html#initialize-instance_method" title="Axlsx::Override#initialize (method)">#initialize</a></span>
1612
+ <span class='object_link'><a href="Axlsx/OneCellAnchor.html#initialize-instance_method" title="Axlsx::OneCellAnchor#initialize (method)">#initialize</a></span>
1469
1613
 
1470
- <small>Axlsx::Override</small>
1614
+ <small>Axlsx::OneCellAnchor</small>
1471
1615
 
1472
1616
  </li>
1473
1617
 
1474
1618
 
1475
1619
  <li class="r2 ">
1476
- <span class='object_link'><a href="Axlsx/BorderPr.html#initialize-instance_method" title="Axlsx::BorderPr#initialize (method)">#initialize</a></span>
1620
+ <span class='object_link'><a href="Axlsx/Series.html#initialize-instance_method" title="Axlsx::Series#initialize (method)">#initialize</a></span>
1477
1621
 
1478
- <small>Axlsx::BorderPr</small>
1622
+ <small>Axlsx::Series</small>
1479
1623
 
1480
1624
  </li>
1481
1625
 
1482
1626
 
1483
1627
  <li class="r1 ">
1484
- <span class='object_link'><a href="Axlsx/Relationships.html#initialize-instance_method" title="Axlsx::Relationships#initialize (method)">#initialize</a></span>
1628
+ <span class='object_link'><a href="Axlsx/Line3DChart.html#initialize-instance_method" title="Axlsx::Line3DChart#initialize (method)">#initialize</a></span>
1485
1629
 
1486
- <small>Axlsx::Relationships</small>
1630
+ <small>Axlsx::Line3DChart</small>
1487
1631
 
1488
1632
  </li>
1489
1633
 
1490
1634
 
1491
1635
  <li class="r2 ">
1492
- <span class='object_link'><a href="Axlsx/Axis.html#initialize-instance_method" title="Axlsx::Axis#initialize (method)">#initialize</a></span>
1636
+ <span class='object_link'><a href="Axlsx/PictureLocking.html#initialize-instance_method" title="Axlsx::PictureLocking#initialize (method)">#initialize</a></span>
1493
1637
 
1494
- <small>Axlsx::Axis</small>
1638
+ <small>Axlsx::PictureLocking</small>
1495
1639
 
1496
1640
  </li>
1497
1641
 
1498
1642
 
1499
1643
  <li class="r1 ">
1500
- <span class='object_link'><a href="Axlsx/TwoCellAnchor.html#initialize-instance_method" title="Axlsx::TwoCellAnchor#initialize (method)">#initialize</a></span>
1644
+ <span class='object_link'><a href="Axlsx/BorderPr.html#initialize-instance_method" title="Axlsx::BorderPr#initialize (method)">#initialize</a></span>
1501
1645
 
1502
- <small>Axlsx::TwoCellAnchor</small>
1646
+ <small>Axlsx::BorderPr</small>
1503
1647
 
1504
1648
  </li>
1505
1649
 
1506
1650
 
1507
1651
  <li class="r2 ">
1652
+ <span class='object_link'><a href="Axlsx/CellStyle.html#initialize-instance_method" title="Axlsx::CellStyle#initialize (method)">#initialize</a></span>
1653
+
1654
+ <small>Axlsx::CellStyle</small>
1655
+
1656
+ </li>
1657
+
1658
+
1659
+ <li class="r1 ">
1508
1660
  <span class='object_link'><a href="Axlsx/CellAlignment.html#initialize-instance_method" title="Axlsx::CellAlignment#initialize (method)">#initialize</a></span>
1509
1661
 
1510
1662
  <small>Axlsx::CellAlignment</small>
@@ -1512,23 +1664,71 @@
1512
1664
  </li>
1513
1665
 
1514
1666
 
1667
+ <li class="r2 ">
1668
+ <span class='object_link'><a href="Axlsx/CatAxis.html#initialize-instance_method" title="Axlsx::CatAxis#initialize (method)">#initialize</a></span>
1669
+
1670
+ <small>Axlsx::CatAxis</small>
1671
+
1672
+ </li>
1673
+
1674
+
1515
1675
  <li class="r1 ">
1516
- <span class='object_link'><a href="Axlsx/Xf.html#initialize-instance_method" title="Axlsx::Xf#initialize (method)">#initialize</a></span>
1676
+ <span class='object_link'><a href="Axlsx/ValAxis.html#initialize-instance_method" title="Axlsx::ValAxis#initialize (method)">#initialize</a></span>
1517
1677
 
1518
- <small>Axlsx::Xf</small>
1678
+ <small>Axlsx::ValAxis</small>
1519
1679
 
1520
1680
  </li>
1521
1681
 
1522
1682
 
1523
1683
  <li class="r2 ">
1524
- <span class='object_link'><a href="Axlsx/Row.html#initialize-instance_method" title="Axlsx::Row#initialize (method)">#initialize</a></span>
1684
+ <span class='object_link'><a href="Axlsx/TableStyles.html#initialize-instance_method" title="Axlsx::TableStyles#initialize (method)">#initialize</a></span>
1525
1685
 
1526
- <small>Axlsx::Row</small>
1686
+ <small>Axlsx::TableStyles</small>
1687
+
1688
+ </li>
1689
+
1690
+
1691
+ <li class="r1 ">
1692
+ <span class='object_link'><a href="Axlsx/PieSeries.html#initialize-instance_method" title="Axlsx::PieSeries#initialize (method)">#initialize</a></span>
1693
+
1694
+ <small>Axlsx::PieSeries</small>
1695
+
1696
+ </li>
1697
+
1698
+
1699
+ <li class="r2 ">
1700
+ <span class='object_link'><a href="Axlsx/Workbook.html#initialize-instance_method" title="Axlsx::Workbook#initialize (method)">#initialize</a></span>
1701
+
1702
+ <small>Axlsx::Workbook</small>
1703
+
1704
+ </li>
1705
+
1706
+
1707
+ <li class="r1 ">
1708
+ <span class='object_link'><a href="Axlsx/Worksheet.html#initialize-instance_method" title="Axlsx::Worksheet#initialize (method)">#initialize</a></span>
1709
+
1710
+ <small>Axlsx::Worksheet</small>
1711
+
1712
+ </li>
1713
+
1714
+
1715
+ <li class="r2 ">
1716
+ <span class='object_link'><a href="Axlsx/Cell.html#initialize-instance_method" title="Axlsx::Cell#initialize (method)">#initialize</a></span>
1717
+
1718
+ <small>Axlsx::Cell</small>
1527
1719
 
1528
1720
  </li>
1529
1721
 
1530
1722
 
1531
1723
  <li class="r1 ">
1724
+ <span class='object_link'><a href="Axlsx/GradientStop.html#initialize-instance_method" title="Axlsx::GradientStop#initialize (method)">#initialize</a></span>
1725
+
1726
+ <small>Axlsx::GradientStop</small>
1727
+
1728
+ </li>
1729
+
1730
+
1731
+ <li class="r2 ">
1532
1732
  <span class='object_link'><a href="Axlsx/CatAxisData.html#initialize-instance_method" title="Axlsx::CatAxisData#initialize (method)">#initialize</a></span>
1533
1733
 
1534
1734
  <small>Axlsx::CatAxisData</small>
@@ -1536,26 +1736,50 @@
1536
1736
  </li>
1537
1737
 
1538
1738
 
1739
+ <li class="r1 ">
1740
+ <span class='object_link'><a href="Axlsx/Relationships.html#initialize-instance_method" title="Axlsx::Relationships#initialize (method)">#initialize</a></span>
1741
+
1742
+ <small>Axlsx::Relationships</small>
1743
+
1744
+ </li>
1745
+
1746
+
1539
1747
  <li class="r2 ">
1540
- <span class='object_link'><a href="Axlsx/CellProtection.html#initialize-instance_method" title="Axlsx::CellProtection#initialize (method)">#initialize</a></span>
1748
+ <span class='object_link'><a href="Axlsx/Color.html#initialize-instance_method" title="Axlsx::Color#initialize (method)">#initialize</a></span>
1541
1749
 
1542
- <small>Axlsx::CellProtection</small>
1750
+ <small>Axlsx::Color</small>
1543
1751
 
1544
1752
  </li>
1545
1753
 
1546
1754
 
1547
1755
  <li class="r1 ">
1548
- <span class='object_link'><a href="Axlsx/TableStyleElement.html#initialize-instance_method" title="Axlsx::TableStyleElement#initialize (method)">#initialize</a></span>
1756
+ <span class='object_link'><a href="Axlsx/LineSeries.html#initialize-instance_method" title="Axlsx::LineSeries#initialize (method)">#initialize</a></span>
1549
1757
 
1550
- <small>Axlsx::TableStyleElement</small>
1758
+ <small>Axlsx::LineSeries</small>
1551
1759
 
1552
1760
  </li>
1553
1761
 
1554
1762
 
1555
1763
  <li class="r2 ">
1556
- <span class='object_link'><a href="Axlsx/Border.html#initialize-instance_method" title="Axlsx::Border#initialize (method)">#initialize</a></span>
1764
+ <span class='object_link'><a href="Axlsx/Xf.html#initialize-instance_method" title="Axlsx::Xf#initialize (method)">#initialize</a></span>
1557
1765
 
1558
- <small>Axlsx::Border</small>
1766
+ <small>Axlsx::Xf</small>
1767
+
1768
+ </li>
1769
+
1770
+
1771
+ <li class="r1 ">
1772
+ <span class='object_link'><a href="Axlsx/Marker.html#initialize-instance_method" title="Axlsx::Marker#initialize (method)">#initialize</a></span>
1773
+
1774
+ <small>Axlsx::Marker</small>
1775
+
1776
+ </li>
1777
+
1778
+
1779
+ <li class="r2 ">
1780
+ <span class='object_link'><a href="Axlsx/Drawing.html#initialize-instance_method" title="Axlsx::Drawing#initialize (method)">#initialize</a></span>
1781
+
1782
+ <small>Axlsx::Drawing</small>
1559
1783
 
1560
1784
  </li>
1561
1785
 
@@ -1569,119 +1793,135 @@
1569
1793
 
1570
1794
 
1571
1795
  <li class="r2 ">
1572
- <span class='object_link'><a href="Axlsx/GraphicFrame.html#initialize-instance_method" title="Axlsx::GraphicFrame#initialize (method)">#initialize</a></span>
1796
+ <span class='object_link'><a href="Axlsx/CellAlignment.html#justifyLastLine-instance_method" title="Axlsx::CellAlignment#justifyLastLine (method)">#justifyLastLine</a></span>
1573
1797
 
1574
- <small>Axlsx::GraphicFrame</small>
1798
+ <small>Axlsx::CellAlignment</small>
1575
1799
 
1576
1800
  </li>
1577
1801
 
1578
1802
 
1579
1803
  <li class="r1 ">
1580
- <span class='object_link'><a href="Axlsx/SerAxis.html#initialize-instance_method" title="Axlsx::SerAxis#initialize (method)">#initialize</a></span>
1804
+ <span class='object_link'><a href="Axlsx/PieSeries.html#labels-instance_method" title="Axlsx::PieSeries#labels (method)">#labels</a></span>
1581
1805
 
1582
- <small>Axlsx::SerAxis</small>
1806
+ <small>Axlsx::PieSeries</small>
1583
1807
 
1584
1808
  </li>
1585
1809
 
1586
1810
 
1587
1811
  <li class="r2 ">
1588
- <span class='object_link'><a href="Axlsx/Pie3DChart.html#initialize-instance_method" title="Axlsx::Pie3DChart#initialize (method)">#initialize</a></span>
1812
+ <span class='object_link'><a href="Axlsx/LineSeries.html#labels-instance_method" title="Axlsx::LineSeries#labels (method)">#labels</a></span>
1589
1813
 
1590
- <small>Axlsx::Pie3DChart</small>
1814
+ <small>Axlsx::LineSeries</small>
1591
1815
 
1592
1816
  </li>
1593
1817
 
1594
1818
 
1595
1819
  <li class="r1 ">
1596
- <span class='object_link'><a href="Axlsx/Cell.html#initialize-instance_method" title="Axlsx::Cell#initialize (method)">#initialize</a></span>
1820
+ <span class='object_link'><a href="Axlsx/BarSeries.html#labels-instance_method" title="Axlsx::BarSeries#labels (method)">#labels</a></span>
1597
1821
 
1598
- <small>Axlsx::Cell</small>
1822
+ <small>Axlsx::BarSeries</small>
1599
1823
 
1600
1824
  </li>
1601
1825
 
1602
1826
 
1603
1827
  <li class="r2 ">
1604
- <span class='object_link'><a href="Axlsx/OneCellAnchor.html#initialize-instance_method" title="Axlsx::OneCellAnchor#initialize (method)">#initialize</a></span>
1828
+ <span class='object_link'><a href="Axlsx/CatAxis.html#lblAlgn-instance_method" title="Axlsx::CatAxis#lblAlgn (method)">#lblAlgn</a></span>
1605
1829
 
1606
- <small>Axlsx::OneCellAnchor</small>
1830
+ <small>Axlsx::CatAxis</small>
1607
1831
 
1608
1832
  </li>
1609
1833
 
1610
1834
 
1611
1835
  <li class="r1 ">
1612
- <span class='object_link'><a href="Axlsx/CellStyle.html#initialize-instance_method" title="Axlsx::CellStyle#initialize (method)">#initialize</a></span>
1836
+ <span class='object_link'><a href="Axlsx/CatAxis.html#lblOffset-instance_method" title="Axlsx::CatAxis#lblOffset (method)">#lblOffset</a></span>
1613
1837
 
1614
- <small>Axlsx::CellStyle</small>
1838
+ <small>Axlsx::CatAxis</small>
1615
1839
 
1616
1840
  </li>
1617
1841
 
1618
1842
 
1619
1843
  <li class="r2 ">
1620
- <span class='object_link'><a href="Axlsx/BarSeries.html#initialize-instance_method" title="Axlsx::BarSeries#initialize (method)">#initialize</a></span>
1844
+ <span class='object_link'><a href="Axlsx/GradientFill.html#left-instance_method" title="Axlsx::GradientFill#left (method)">#left</a></span>
1621
1845
 
1622
- <small>Axlsx::BarSeries</small>
1846
+ <small>Axlsx::GradientFill</small>
1847
+
1848
+ </li>
1849
+
1850
+
1851
+ <li class="r1 ">
1852
+ <span class='object_link'><a href="Axlsx/CellProtection.html#locked-instance_method" title="Axlsx::CellProtection#locked (method)">#locked</a></span>
1853
+
1854
+ <small>Axlsx::CellProtection</small>
1855
+
1856
+ </li>
1857
+
1858
+
1859
+ <li class="r2 ">
1860
+ <span class='object_link'><a href="Axlsx/Scaling.html#logBase-instance_method" title="Axlsx::Scaling#logBase (method)">#logBase</a></span>
1861
+
1862
+ <small>Axlsx::Scaling</small>
1623
1863
 
1624
1864
  </li>
1625
1865
 
1626
1866
 
1627
1867
  <li class="r1 ">
1628
- <span class='object_link'><a href="Axlsx/Color.html#initialize-instance_method" title="Axlsx::Color#initialize (method)">#initialize</a></span>
1868
+ <span class='object_link'><a href="Axlsx/Scaling.html#max-instance_method" title="Axlsx::Scaling#max (method)">#max</a></span>
1629
1869
 
1630
- <small>Axlsx::Color</small>
1870
+ <small>Axlsx::Scaling</small>
1631
1871
 
1632
1872
  </li>
1633
1873
 
1634
1874
 
1635
1875
  <li class="r2 ">
1636
- <span class='object_link'><a href="Axlsx/PatternFill.html#initialize-instance_method" title="Axlsx::PatternFill#initialize (method)">#initialize</a></span>
1876
+ <span class='object_link'><a href="Axlsx/Scaling.html#min-instance_method" title="Axlsx::Scaling#min (method)">#min</a></span>
1637
1877
 
1638
- <small>Axlsx::PatternFill</small>
1878
+ <small>Axlsx::Scaling</small>
1639
1879
 
1640
1880
  </li>
1641
1881
 
1642
1882
 
1643
1883
  <li class="r1 ">
1644
- <span class='object_link'><a href="Axlsx/CatAxis.html#initialize-instance_method" title="Axlsx::CatAxis#initialize (method)">#initialize</a></span>
1884
+ <span class='object_link'><a href="Axlsx/Font.html#name-instance_method" title="Axlsx::Font#name (method)">#name</a></span>
1645
1885
 
1646
- <small>Axlsx::CatAxis</small>
1886
+ <small>Axlsx::Font</small>
1647
1887
 
1648
1888
  </li>
1649
1889
 
1650
1890
 
1651
1891
  <li class="r2 ">
1652
- <span class='object_link'><a href="Axlsx/Title.html#initialize-instance_method" title="Axlsx::Title#initialize (method)">#initialize</a></span>
1892
+ <span class='object_link'><a href="Axlsx/TableStyle.html#name-instance_method" title="Axlsx::TableStyle#name (method)">#name</a></span>
1653
1893
 
1654
- <small>Axlsx::Title</small>
1894
+ <small>Axlsx::TableStyle</small>
1655
1895
 
1656
1896
  </li>
1657
1897
 
1658
1898
 
1659
1899
  <li class="r1 ">
1660
- <span class='object_link'><a href="Axlsx/Relationship.html#initialize-instance_method" title="Axlsx::Relationship#initialize (method)">#initialize</a></span>
1900
+ <span class='object_link'><a href="Axlsx/CellStyle.html#name-instance_method" title="Axlsx::CellStyle#name (method)">#name</a></span>
1661
1901
 
1662
- <small>Axlsx::Relationship</small>
1902
+ <small>Axlsx::CellStyle</small>
1663
1903
 
1664
1904
  </li>
1665
1905
 
1666
1906
 
1667
1907
  <li class="r2 ">
1668
- <span class='object_link'><a href="Axlsx/PieSeries.html#initialize-instance_method" title="Axlsx::PieSeries#initialize (method)">#initialize</a></span>
1908
+ <span class='object_link'><a href="Axlsx/BorderPr.html#name-instance_method" title="Axlsx::BorderPr#name (method)">#name</a></span>
1669
1909
 
1670
- <small>Axlsx::PieSeries</small>
1910
+ <small>Axlsx::BorderPr</small>
1671
1911
 
1672
1912
  </li>
1673
1913
 
1674
1914
 
1675
1915
  <li class="r1 ">
1676
- <span class='object_link'><a href="Axlsx/TableStyle.html#initialize-instance_method" title="Axlsx::TableStyle#initialize (method)">#initialize</a></span>
1916
+ <span class='object_link'><a href="Axlsx/Worksheet.html#name-instance_method" title="Axlsx::Worksheet#name (method)">#name</a></span>
1677
1917
 
1678
- <small>Axlsx::TableStyle</small>
1918
+ <small>Axlsx::Worksheet</small>
1679
1919
 
1680
1920
  </li>
1681
1921
 
1682
1922
 
1683
1923
  <li class="r2 ">
1684
- <span class='object_link'><a href="Axlsx/Pic.html#initialize-instance_method" title="Axlsx::Pic#initialize (method)">#initialize</a></span>
1924
+ <span class='object_link'><a href="Axlsx/Pic.html#name-instance_method" title="Axlsx::Pic#name (method)">#name</a></span>
1685
1925
 
1686
1926
  <small>Axlsx::Pic</small>
1687
1927
 
@@ -1689,7 +1929,7 @@
1689
1929
 
1690
1930
 
1691
1931
  <li class="r1 ">
1692
- <span class='object_link'><a href="Axlsx/Worksheet.html#initialize-instance_method" title="Axlsx::Worksheet#initialize (method)">#initialize</a></span>
1932
+ <span class='object_link'><a href="Axlsx/Worksheet.html#name_to_cell-instance_method" title="Axlsx::Worksheet#name_to_cell (method)">#name_to_cell</a></span>
1693
1933
 
1694
1934
  <small>Axlsx::Worksheet</small>
1695
1935
 
@@ -1697,225 +1937,225 @@
1697
1937
 
1698
1938
 
1699
1939
  <li class="r2 ">
1700
- <span class='object_link'><a href="Axlsx/Package.html#initialize-instance_method" title="Axlsx::Package#initialize (method)">#initialize</a></span>
1940
+ <span class='object_link'><a href="Axlsx.html#name_to_indices-class_method" title="Axlsx.name_to_indices (method)">name_to_indices</a></span>
1701
1941
 
1702
- <small>Axlsx::Package</small>
1942
+ <small>Axlsx</small>
1703
1943
 
1704
1944
  </li>
1705
1945
 
1706
1946
 
1707
1947
  <li class="r1 ">
1708
- <span class='object_link'><a href="Axlsx/CellAlignment.html#justifyLastLine-instance_method" title="Axlsx::CellAlignment#justifyLastLine (method)">#justifyLastLine</a></span>
1948
+ <span class='object_link'><a href="Axlsx/PictureLocking.html#noAdjustHandles-instance_method" title="Axlsx::PictureLocking#noAdjustHandles (method)">#noAdjustHandles</a></span>
1709
1949
 
1710
- <small>Axlsx::CellAlignment</small>
1950
+ <small>Axlsx::PictureLocking</small>
1711
1951
 
1712
1952
  </li>
1713
1953
 
1714
1954
 
1715
1955
  <li class="r2 ">
1716
- <span class='object_link'><a href="Axlsx/BarSeries.html#labels-instance_method" title="Axlsx::BarSeries#labels (method)">#labels</a></span>
1956
+ <span class='object_link'><a href="Axlsx/PictureLocking.html#noChangeArrowheads-instance_method" title="Axlsx::PictureLocking#noChangeArrowheads (method)">#noChangeArrowheads</a></span>
1717
1957
 
1718
- <small>Axlsx::BarSeries</small>
1958
+ <small>Axlsx::PictureLocking</small>
1719
1959
 
1720
1960
  </li>
1721
1961
 
1722
1962
 
1723
1963
  <li class="r1 ">
1724
- <span class='object_link'><a href="Axlsx/PieSeries.html#labels-instance_method" title="Axlsx::PieSeries#labels (method)">#labels</a></span>
1964
+ <span class='object_link'><a href="Axlsx/PictureLocking.html#noChangeAspect-instance_method" title="Axlsx::PictureLocking#noChangeAspect (method)">#noChangeAspect</a></span>
1725
1965
 
1726
- <small>Axlsx::PieSeries</small>
1966
+ <small>Axlsx::PictureLocking</small>
1727
1967
 
1728
1968
  </li>
1729
1969
 
1730
1970
 
1731
1971
  <li class="r2 ">
1732
- <span class='object_link'><a href="Axlsx/LineSeries.html#labels-instance_method" title="Axlsx::LineSeries#labels (method)">#labels</a></span>
1972
+ <span class='object_link'><a href="Axlsx/PictureLocking.html#noChangeShapeType-instance_method" title="Axlsx::PictureLocking#noChangeShapeType (method)">#noChangeShapeType</a></span>
1733
1973
 
1734
- <small>Axlsx::LineSeries</small>
1974
+ <small>Axlsx::PictureLocking</small>
1735
1975
 
1736
1976
  </li>
1737
1977
 
1738
1978
 
1739
1979
  <li class="r1 ">
1740
- <span class='object_link'><a href="Axlsx/CatAxis.html#lblAlgn-instance_method" title="Axlsx::CatAxis#lblAlgn (method)">#lblAlgn</a></span>
1980
+ <span class='object_link'><a href="Axlsx/PictureLocking.html#noEditPoints-instance_method" title="Axlsx::PictureLocking#noEditPoints (method)">#noEditPoints</a></span>
1741
1981
 
1742
- <small>Axlsx::CatAxis</small>
1982
+ <small>Axlsx::PictureLocking</small>
1743
1983
 
1744
1984
  </li>
1745
1985
 
1746
1986
 
1747
1987
  <li class="r2 ">
1748
- <span class='object_link'><a href="Axlsx/CatAxis.html#lblOffset-instance_method" title="Axlsx::CatAxis#lblOffset (method)">#lblOffset</a></span>
1988
+ <span class='object_link'><a href="Axlsx/PictureLocking.html#noGrp-instance_method" title="Axlsx::PictureLocking#noGrp (method)">#noGrp</a></span>
1749
1989
 
1750
- <small>Axlsx::CatAxis</small>
1990
+ <small>Axlsx::PictureLocking</small>
1751
1991
 
1752
1992
  </li>
1753
1993
 
1754
1994
 
1755
1995
  <li class="r1 ">
1756
- <span class='object_link'><a href="Axlsx/GradientFill.html#left-instance_method" title="Axlsx::GradientFill#left (method)">#left</a></span>
1996
+ <span class='object_link'><a href="Axlsx/PictureLocking.html#noMove-instance_method" title="Axlsx::PictureLocking#noMove (method)">#noMove</a></span>
1757
1997
 
1758
- <small>Axlsx::GradientFill</small>
1998
+ <small>Axlsx::PictureLocking</small>
1759
1999
 
1760
2000
  </li>
1761
2001
 
1762
2002
 
1763
2003
  <li class="r2 ">
1764
- <span class='object_link'><a href="Axlsx/CellProtection.html#locked-instance_method" title="Axlsx::CellProtection#locked (method)">#locked</a></span>
2004
+ <span class='object_link'><a href="Axlsx/PictureLocking.html#noResize-instance_method" title="Axlsx::PictureLocking#noResize (method)">#noResize</a></span>
1765
2005
 
1766
- <small>Axlsx::CellProtection</small>
2006
+ <small>Axlsx::PictureLocking</small>
1767
2007
 
1768
2008
  </li>
1769
2009
 
1770
2010
 
1771
2011
  <li class="r1 ">
1772
- <span class='object_link'><a href="Axlsx/Scaling.html#logBase-instance_method" title="Axlsx::Scaling#logBase (method)">#logBase</a></span>
2012
+ <span class='object_link'><a href="Axlsx/PictureLocking.html#noRot-instance_method" title="Axlsx::PictureLocking#noRot (method)">#noRot</a></span>
1773
2013
 
1774
- <small>Axlsx::Scaling</small>
2014
+ <small>Axlsx::PictureLocking</small>
1775
2015
 
1776
2016
  </li>
1777
2017
 
1778
2018
 
1779
2019
  <li class="r2 ">
1780
- <span class='object_link'><a href="Axlsx/Scaling.html#max-instance_method" title="Axlsx::Scaling#max (method)">#max</a></span>
2020
+ <span class='object_link'><a href="Axlsx/PictureLocking.html#noSelect-instance_method" title="Axlsx::PictureLocking#noSelect (method)">#noSelect</a></span>
1781
2021
 
1782
- <small>Axlsx::Scaling</small>
2022
+ <small>Axlsx::PictureLocking</small>
1783
2023
 
1784
2024
  </li>
1785
2025
 
1786
2026
 
1787
2027
  <li class="r1 ">
1788
- <span class='object_link'><a href="Axlsx/Scaling.html#min-instance_method" title="Axlsx::Scaling#min (method)">#min</a></span>
2028
+ <span class='object_link'><a href="Axlsx/Xf.html#numFmtId-instance_method" title="Axlsx::Xf#numFmtId (method)">#numFmtId</a></span>
1789
2029
 
1790
- <small>Axlsx::Scaling</small>
2030
+ <small>Axlsx::Xf</small>
1791
2031
 
1792
2032
  </li>
1793
2033
 
1794
2034
 
1795
2035
  <li class="r2 ">
1796
- <span class='object_link'><a href="Axlsx/BorderPr.html#name-instance_method" title="Axlsx::BorderPr#name (method)">#name</a></span>
2036
+ <span class='object_link'><a href="Axlsx/NumFmt.html#numFmtId-instance_method" title="Axlsx::NumFmt#numFmtId (method)">#numFmtId</a></span>
1797
2037
 
1798
- <small>Axlsx::BorderPr</small>
2038
+ <small>Axlsx::NumFmt</small>
1799
2039
 
1800
2040
  </li>
1801
2041
 
1802
2042
 
1803
2043
  <li class="r1 ">
1804
- <span class='object_link'><a href="Axlsx/CellStyle.html#name-instance_method" title="Axlsx::CellStyle#name (method)">#name</a></span>
2044
+ <span class='object_link'><a href="Axlsx/Styles.html#numFmts-instance_method" title="Axlsx::Styles#numFmts (method)">#numFmts</a></span>
1805
2045
 
1806
- <small>Axlsx::CellStyle</small>
2046
+ <small>Axlsx::Styles</small>
1807
2047
 
1808
2048
  </li>
1809
2049
 
1810
2050
 
1811
2051
  <li class="r2 ">
1812
- <span class='object_link'><a href="Axlsx/Worksheet.html#name-instance_method" title="Axlsx::Worksheet#name (method)">#name</a></span>
2052
+ <span class='object_link'><a href="Axlsx/OneCellAnchor.html#object-instance_method" title="Axlsx::OneCellAnchor#object (method)">#object</a></span>
1813
2053
 
1814
- <small>Axlsx::Worksheet</small>
2054
+ <small>Axlsx::OneCellAnchor</small>
1815
2055
 
1816
2056
  </li>
1817
2057
 
1818
2058
 
1819
2059
  <li class="r1 ">
1820
- <span class='object_link'><a href="Axlsx/Font.html#name-instance_method" title="Axlsx::Font#name (method)">#name</a></span>
2060
+ <span class='object_link'><a href="Axlsx/TwoCellAnchor.html#object-instance_method" title="Axlsx::TwoCellAnchor#object (method)">#object</a></span>
1821
2061
 
1822
- <small>Axlsx::Font</small>
2062
+ <small>Axlsx::TwoCellAnchor</small>
1823
2063
 
1824
2064
  </li>
1825
2065
 
1826
2066
 
1827
2067
  <li class="r2 ">
1828
- <span class='object_link'><a href="Axlsx/Pic.html#name-instance_method" title="Axlsx::Pic#name (method)">#name</a></span>
2068
+ <span class='object_link'><a href="Axlsx/Series.html#order-instance_method" title="Axlsx::Series#order (method)">#order</a></span>
1829
2069
 
1830
- <small>Axlsx::Pic</small>
2070
+ <small>Axlsx::Series</small>
1831
2071
 
1832
2072
  </li>
1833
2073
 
1834
2074
 
1835
2075
  <li class="r1 ">
1836
- <span class='object_link'><a href="Axlsx/TableStyle.html#name-instance_method" title="Axlsx::TableStyle#name (method)">#name</a></span>
2076
+ <span class='object_link'><a href="Axlsx/Series.html#order%3D-instance_method" title="Axlsx::Series#order= (method)">#order=</a></span>
1837
2077
 
1838
- <small>Axlsx::TableStyle</small>
2078
+ <small>Axlsx::Series</small>
1839
2079
 
1840
2080
  </li>
1841
2081
 
1842
2082
 
1843
2083
  <li class="r2 ">
1844
- <span class='object_link'><a href="Axlsx/Xf.html#numFmtId-instance_method" title="Axlsx::Xf#numFmtId (method)">#numFmtId</a></span>
2084
+ <span class='object_link'><a href="Axlsx/Scaling.html#orientation-instance_method" title="Axlsx::Scaling#orientation (method)">#orientation</a></span>
1845
2085
 
1846
- <small>Axlsx::Xf</small>
2086
+ <small>Axlsx::Scaling</small>
1847
2087
 
1848
2088
  </li>
1849
2089
 
1850
2090
 
1851
2091
  <li class="r1 ">
1852
- <span class='object_link'><a href="Axlsx/NumFmt.html#numFmtId-instance_method" title="Axlsx::NumFmt#numFmtId (method)">#numFmtId</a></span>
2092
+ <span class='object_link'><a href="Axlsx/Font.html#outline-instance_method" title="Axlsx::Font#outline (method)">#outline</a></span>
1853
2093
 
1854
- <small>Axlsx::NumFmt</small>
2094
+ <small>Axlsx::Font</small>
1855
2095
 
1856
2096
  </li>
1857
2097
 
1858
2098
 
1859
2099
  <li class="r2 ">
1860
- <span class='object_link'><a href="Axlsx/Styles.html#numFmts-instance_method" title="Axlsx::Styles#numFmts (method)">#numFmts</a></span>
2100
+ <span class='object_link'><a href="Axlsx/Cell.html#outline-instance_method" title="Axlsx::Cell#outline (method)">#outline</a></span>
1861
2101
 
1862
- <small>Axlsx::Styles</small>
2102
+ <small>Axlsx::Cell</small>
1863
2103
 
1864
2104
  </li>
1865
2105
 
1866
2106
 
1867
2107
  <li class="r1 ">
1868
- <span class='object_link'><a href="Axlsx/TwoCellAnchor.html#object-instance_method" title="Axlsx::TwoCellAnchor#object (method)">#object</a></span>
2108
+ <span class='object_link'><a href="Axlsx/Border.html#outline-instance_method" title="Axlsx::Border#outline (method)">#outline</a></span>
1869
2109
 
1870
- <small>Axlsx::TwoCellAnchor</small>
2110
+ <small>Axlsx::Border</small>
1871
2111
 
1872
2112
  </li>
1873
2113
 
1874
2114
 
1875
2115
  <li class="r2 ">
1876
- <span class='object_link'><a href="Axlsx/OneCellAnchor.html#object-instance_method" title="Axlsx::OneCellAnchor#object (method)">#object</a></span>
2116
+ <span class='object_link'><a href="Axlsx/Parser.html#parse_float-instance_method" title="Axlsx::Parser#parse_float (method)">#parse_float</a></span>
1877
2117
 
1878
- <small>Axlsx::OneCellAnchor</small>
2118
+ <small>Axlsx::Parser</small>
1879
2119
 
1880
2120
  </li>
1881
2121
 
1882
2122
 
1883
2123
  <li class="r1 ">
1884
- <span class='object_link'><a href="Axlsx/Series.html#order-instance_method" title="Axlsx::Series#order (method)">#order</a></span>
2124
+ <span class='object_link'><a href="Axlsx/Parser.html#parse_integer-instance_method" title="Axlsx::Parser#parse_integer (method)">#parse_integer</a></span>
1885
2125
 
1886
- <small>Axlsx::Series</small>
2126
+ <small>Axlsx::Parser</small>
1887
2127
 
1888
2128
  </li>
1889
2129
 
1890
2130
 
1891
2131
  <li class="r2 ">
1892
- <span class='object_link'><a href="Axlsx/Series.html#order%3D-instance_method" title="Axlsx::Series#order= (method)">#order=</a></span>
2132
+ <span class='object_link'><a href="Axlsx/Parser.html#parse_string-instance_method" title="Axlsx::Parser#parse_string (method)">#parse_string</a></span>
1893
2133
 
1894
- <small>Axlsx::Series</small>
2134
+ <small>Axlsx::Parser</small>
1895
2135
 
1896
2136
  </li>
1897
2137
 
1898
2138
 
1899
2139
  <li class="r1 ">
1900
- <span class='object_link'><a href="Axlsx/Scaling.html#orientation-instance_method" title="Axlsx::Scaling#orientation (method)">#orientation</a></span>
2140
+ <span class='object_link'><a href="Axlsx/Parser.html#parse_symbol-instance_method" title="Axlsx::Parser#parse_symbol (method)">#parse_symbol</a></span>
1901
2141
 
1902
- <small>Axlsx::Scaling</small>
2142
+ <small>Axlsx::Parser</small>
1903
2143
 
1904
2144
  </li>
1905
2145
 
1906
2146
 
1907
2147
  <li class="r2 ">
1908
- <span class='object_link'><a href="Axlsx/Border.html#outline-instance_method" title="Axlsx::Border#outline (method)">#outline</a></span>
2148
+ <span class='object_link'><a href="Axlsx/Parser.html#parse_value-instance_method" title="Axlsx::Parser#parse_value (method)">#parse_value</a></span>
1909
2149
 
1910
- <small>Axlsx::Border</small>
2150
+ <small>Axlsx::Parser</small>
1911
2151
 
1912
2152
  </li>
1913
2153
 
1914
2154
 
1915
2155
  <li class="r1 ">
1916
- <span class='object_link'><a href="Axlsx/Font.html#outline-instance_method" title="Axlsx::Font#outline (method)">#outline</a></span>
2156
+ <span class='object_link'><a href="Axlsx/Parser.html#parser_xml-instance_method" title="Axlsx::Parser#parser_xml (method)">#parser_xml</a></span>
1917
2157
 
1918
- <small>Axlsx::Font</small>
2158
+ <small>Axlsx::Parser</small>
1919
2159
 
1920
2160
  </li>
1921
2161
 
@@ -1937,6 +2177,14 @@
1937
2177
 
1938
2178
 
1939
2179
  <li class="r2 ">
2180
+ <span class='object_link'><a href="Axlsx/Pic.html#picture_locking-instance_method" title="Axlsx::Pic#picture_locking (method)">#picture_locking</a></span>
2181
+
2182
+ <small>Axlsx::Pic</small>
2183
+
2184
+ </li>
2185
+
2186
+
2187
+ <li class="r1 ">
1940
2188
  <span class='object_link'><a href="Axlsx/TableStyle.html#pivot-instance_method" title="Axlsx::TableStyle#pivot (method)">#pivot</a></span>
1941
2189
 
1942
2190
  <small>Axlsx::TableStyle</small>
@@ -1944,7 +2192,7 @@
1944
2192
  </li>
1945
2193
 
1946
2194
 
1947
- <li class="r1 ">
2195
+ <li class="r2 ">
1948
2196
  <span class='object_link'><a href="Axlsx/Xf.html#pivotButton-instance_method" title="Axlsx::Xf#pivotButton (method)">#pivotButton</a></span>
1949
2197
 
1950
2198
  <small>Axlsx::Xf</small>
@@ -1952,6 +2200,14 @@
1952
2200
  </li>
1953
2201
 
1954
2202
 
2203
+ <li class="r1 ">
2204
+ <span class='object_link'><a href="Axlsx/Pic.html#pn-instance_method" title="Axlsx::Pic#pn (method)">#pn</a></span>
2205
+
2206
+ <small>Axlsx::Pic</small>
2207
+
2208
+ </li>
2209
+
2210
+
1955
2211
  <li class="r2 ">
1956
2212
  <span class='object_link'><a href="Axlsx/Drawing.html#pn-instance_method" title="Axlsx::Drawing#pn (method)">#pn</a></span>
1957
2213
 
@@ -1969,17 +2225,17 @@
1969
2225
 
1970
2226
 
1971
2227
  <li class="r2 ">
1972
- <span class='object_link'><a href="Axlsx/Pic.html#pn-instance_method" title="Axlsx::Pic#pn (method)">#pn</a></span>
2228
+ <span class='object_link'><a href="Axlsx/Worksheet.html#pn-instance_method" title="Axlsx::Worksheet#pn (method)">#pn</a></span>
1973
2229
 
1974
- <small>Axlsx::Pic</small>
2230
+ <small>Axlsx::Worksheet</small>
1975
2231
 
1976
2232
  </li>
1977
2233
 
1978
2234
 
1979
2235
  <li class="r1 ">
1980
- <span class='object_link'><a href="Axlsx/Worksheet.html#pn-instance_method" title="Axlsx::Worksheet#pn (method)">#pn</a></span>
2236
+ <span class='object_link'><a href="Axlsx/Cell.html#pos-instance_method" title="Axlsx::Cell#pos (method)">#pos</a></span>
1981
2237
 
1982
- <small>Axlsx::Worksheet</small>
2238
+ <small>Axlsx::Cell</small>
1983
2239
 
1984
2240
  </li>
1985
2241
 
@@ -2033,25 +2289,25 @@
2033
2289
 
2034
2290
 
2035
2291
  <li class="r2 ">
2036
- <span class='object_link'><a href="Axlsx/Worksheet.html#rId-instance_method" title="Axlsx::Worksheet#rId (method)">#rId</a></span>
2292
+ <span class='object_link'><a href="Axlsx/GraphicFrame.html#rId-instance_method" title="Axlsx::GraphicFrame#rId (method)">#rId</a></span>
2037
2293
 
2038
- <small>Axlsx::Worksheet</small>
2294
+ <small>Axlsx::GraphicFrame</small>
2039
2295
 
2040
2296
  </li>
2041
2297
 
2042
2298
 
2043
2299
  <li class="r1 ">
2044
- <span class='object_link'><a href="Axlsx/Drawing.html#rId-instance_method" title="Axlsx::Drawing#rId (method)">#rId</a></span>
2300
+ <span class='object_link'><a href="Axlsx/Worksheet.html#rId-instance_method" title="Axlsx::Worksheet#rId (method)">#rId</a></span>
2045
2301
 
2046
- <small>Axlsx::Drawing</small>
2302
+ <small>Axlsx::Worksheet</small>
2047
2303
 
2048
2304
  </li>
2049
2305
 
2050
2306
 
2051
2307
  <li class="r2 ">
2052
- <span class='object_link'><a href="Axlsx/GraphicFrame.html#rId-instance_method" title="Axlsx::GraphicFrame#rId (method)">#rId</a></span>
2308
+ <span class='object_link'><a href="Axlsx/Drawing.html#rId-instance_method" title="Axlsx::Drawing#rId (method)">#rId</a></span>
2053
2309
 
2054
- <small>Axlsx::GraphicFrame</small>
2310
+ <small>Axlsx::Drawing</small>
2055
2311
 
2056
2312
  </li>
2057
2313
 
@@ -2193,17 +2449,17 @@
2193
2449
 
2194
2450
 
2195
2451
  <li class="r2 ">
2196
- <span class='object_link'><a href="Axlsx/Package.html#ruport_table-instance_method" title="Axlsx::Package#ruport_table (method)">#ruport_table</a></span>
2452
+ <span class='object_link'><a href="Axlsx/Axis.html#scaling-instance_method" title="Axlsx::Axis#scaling (method)">#scaling</a></span>
2197
2453
 
2198
- <small>Axlsx::Package</small>
2454
+ <small>Axlsx::Axis</small>
2199
2455
 
2200
2456
  </li>
2201
2457
 
2202
2458
 
2203
2459
  <li class="r1 ">
2204
- <span class='object_link'><a href="Axlsx/Axis.html#scaling-instance_method" title="Axlsx::Axis#scaling (method)">#scaling</a></span>
2460
+ <span class='object_link'><a href="Axlsx/Cell.html#scheme-instance_method" title="Axlsx::Cell#scheme (method)">#scheme</a></span>
2205
2461
 
2206
- <small>Axlsx::Axis</small>
2462
+ <small>Axlsx::Cell</small>
2207
2463
 
2208
2464
  </li>
2209
2465
 
@@ -2241,17 +2497,17 @@
2241
2497
 
2242
2498
 
2243
2499
  <li class="r2 ">
2244
- <span class='object_link'><a href="Axlsx/Font.html#shadow-instance_method" title="Axlsx::Font#shadow (method)">#shadow</a></span>
2500
+ <span class='object_link'><a href="Axlsx/Cell.html#shadow-instance_method" title="Axlsx::Cell#shadow (method)">#shadow</a></span>
2245
2501
 
2246
- <small>Axlsx::Font</small>
2502
+ <small>Axlsx::Cell</small>
2247
2503
 
2248
2504
  </li>
2249
2505
 
2250
2506
 
2251
2507
  <li class="r1 ">
2252
- <span class='object_link'><a href="Axlsx/Bar3DChart.html#shape-instance_method" title="Axlsx::Bar3DChart#shape (method)">#shape</a></span>
2508
+ <span class='object_link'><a href="Axlsx/Font.html#shadow-instance_method" title="Axlsx::Font#shadow (method)">#shadow</a></span>
2253
2509
 
2254
- <small>Axlsx::Bar3DChart</small>
2510
+ <small>Axlsx::Font</small>
2255
2511
 
2256
2512
  </li>
2257
2513
 
@@ -2265,6 +2521,14 @@
2265
2521
 
2266
2522
 
2267
2523
  <li class="r1 ">
2524
+ <span class='object_link'><a href="Axlsx/Bar3DChart.html#shape-instance_method" title="Axlsx::Bar3DChart#shape (method)">#shape</a></span>
2525
+
2526
+ <small>Axlsx::Bar3DChart</small>
2527
+
2528
+ </li>
2529
+
2530
+
2531
+ <li class="r2 ">
2268
2532
  <span class='object_link'><a href="Axlsx/Chart.html#show_legend-instance_method" title="Axlsx::Chart#show_legend (method)">#show_legend</a></span>
2269
2533
 
2270
2534
  <small>Axlsx::Chart</small>
@@ -2272,7 +2536,7 @@
2272
2536
  </li>
2273
2537
 
2274
2538
 
2275
- <li class="r2 ">
2539
+ <li class="r1 ">
2276
2540
  <span class='object_link'><a href="Axlsx/CellAlignment.html#shrinkToFit-instance_method" title="Axlsx::CellAlignment#shrinkToFit (method)">#shrinkToFit</a></span>
2277
2541
 
2278
2542
  <small>Axlsx::CellAlignment</small>
@@ -2280,7 +2544,7 @@
2280
2544
  </li>
2281
2545
 
2282
2546
 
2283
- <li class="r1 ">
2547
+ <li class="r2 ">
2284
2548
  <span class='object_link'><a href="Axlsx/TableStyleElement.html#size-instance_method" title="Axlsx::TableStyleElement#size (method)">#size</a></span>
2285
2549
 
2286
2550
  <small>Axlsx::TableStyleElement</small>
@@ -2288,7 +2552,7 @@
2288
2552
  </li>
2289
2553
 
2290
2554
 
2291
- <li class="r2 ">
2555
+ <li class="r1 ">
2292
2556
  <span class='object_link'><a href="Axlsx/Pic.html#start_at-instance_method" title="Axlsx::Pic#start_at (method)">#start_at</a></span>
2293
2557
 
2294
2558
  <small>Axlsx::Pic</small>
@@ -2296,7 +2560,7 @@
2296
2560
  </li>
2297
2561
 
2298
2562
 
2299
- <li class="r1 ">
2563
+ <li class="r2 ">
2300
2564
  <span class='object_link'><a href="Axlsx/Chart.html#start_at-instance_method" title="Axlsx::Chart#start_at (method)">#start_at</a></span>
2301
2565
 
2302
2566
  <small>Axlsx::Chart</small>
@@ -2304,7 +2568,7 @@
2304
2568
  </li>
2305
2569
 
2306
2570
 
2307
- <li class="r2 ">
2571
+ <li class="r1 ">
2308
2572
  <span class='object_link'><a href="Axlsx/GradientFill.html#stop-instance_method" title="Axlsx::GradientFill#stop (method)">#stop</a></span>
2309
2573
 
2310
2574
  <small>Axlsx::GradientFill</small>
@@ -2312,7 +2576,7 @@
2312
2576
  </li>
2313
2577
 
2314
2578
 
2315
- <li class="r1 ">
2579
+ <li class="r2 ">
2316
2580
  <span class='object_link'><a href="Axlsx/Font.html#strike-instance_method" title="Axlsx::Font#strike (method)">#strike</a></span>
2317
2581
 
2318
2582
  <small>Axlsx::Font</small>
@@ -2320,26 +2584,34 @@
2320
2584
  </li>
2321
2585
 
2322
2586
 
2587
+ <li class="r1 ">
2588
+ <span class='object_link'><a href="Axlsx/Cell.html#strike-instance_method" title="Axlsx::Cell#strike (method)">#strike</a></span>
2589
+
2590
+ <small>Axlsx::Cell</small>
2591
+
2592
+ </li>
2593
+
2594
+
2323
2595
  <li class="r2 ">
2324
- <span class='object_link'><a href="Axlsx/Chart.html#style-instance_method" title="Axlsx::Chart#style (method)">#style</a></span>
2596
+ <span class='object_link'><a href="Axlsx/Cell.html#style-instance_method" title="Axlsx::Cell#style (method)">#style</a></span>
2325
2597
 
2326
- <small>Axlsx::Chart</small>
2598
+ <small>Axlsx::Cell</small>
2327
2599
 
2328
2600
  </li>
2329
2601
 
2330
2602
 
2331
2603
  <li class="r1 ">
2332
- <span class='object_link'><a href="Axlsx/BorderPr.html#style-instance_method" title="Axlsx::BorderPr#style (method)">#style</a></span>
2604
+ <span class='object_link'><a href="Axlsx/Chart.html#style-instance_method" title="Axlsx::Chart#style (method)">#style</a></span>
2333
2605
 
2334
- <small>Axlsx::BorderPr</small>
2606
+ <small>Axlsx::Chart</small>
2335
2607
 
2336
2608
  </li>
2337
2609
 
2338
2610
 
2339
2611
  <li class="r2 ">
2340
- <span class='object_link'><a href="Axlsx/Cell.html#style-instance_method" title="Axlsx::Cell#style (method)">#style</a></span>
2612
+ <span class='object_link'><a href="Axlsx/BorderPr.html#style-instance_method" title="Axlsx::BorderPr#style (method)">#style</a></span>
2341
2613
 
2342
- <small>Axlsx::Cell</small>
2614
+ <small>Axlsx::BorderPr</small>
2343
2615
 
2344
2616
  </li>
2345
2617
 
@@ -2361,6 +2633,14 @@
2361
2633
 
2362
2634
 
2363
2635
  <li class="r1 ">
2636
+ <span class='object_link'><a href="Axlsx/Cell.html#sz-instance_method" title="Axlsx::Cell#sz (method)">#sz</a></span>
2637
+
2638
+ <small>Axlsx::Cell</small>
2639
+
2640
+ </li>
2641
+
2642
+
2643
+ <li class="r2 ">
2364
2644
  <span class='object_link'><a href="Axlsx/Font.html#sz-instance_method" title="Axlsx::Font#sz (method)">#sz</a></span>
2365
2645
 
2366
2646
  <small>Axlsx::Font</small>
@@ -2368,7 +2648,7 @@
2368
2648
  </li>
2369
2649
 
2370
2650
 
2371
- <li class="r2 ">
2651
+ <li class="r1 ">
2372
2652
  <span class='object_link'><a href="Axlsx/TableStyle.html#table-instance_method" title="Axlsx::TableStyle#table (method)">#table</a></span>
2373
2653
 
2374
2654
  <small>Axlsx::TableStyle</small>
@@ -2376,7 +2656,7 @@
2376
2656
  </li>
2377
2657
 
2378
2658
 
2379
- <li class="r1 ">
2659
+ <li class="r2 ">
2380
2660
  <span class='object_link'><a href="Axlsx/Styles.html#tableStyles-instance_method" title="Axlsx::Styles#tableStyles (method)">#tableStyles</a></span>
2381
2661
 
2382
2662
  <small>Axlsx::Styles</small>
@@ -2384,7 +2664,7 @@
2384
2664
  </li>
2385
2665
 
2386
2666
 
2387
- <li class="r2 ">
2667
+ <li class="r1 ">
2388
2668
  <span class='object_link'><a href="Axlsx/Title.html#text-instance_method" title="Axlsx::Title#text (method)">#text</a></span>
2389
2669
 
2390
2670
  <small>Axlsx::Title</small>
@@ -2392,7 +2672,7 @@
2392
2672
  </li>
2393
2673
 
2394
2674
 
2395
- <li class="r1 ">
2675
+ <li class="r2 ">
2396
2676
  <span class='object_link'><a href="Axlsx/CellAlignment.html#textRotation-instance_method" title="Axlsx::CellAlignment#textRotation (method)">#textRotation</a></span>
2397
2677
 
2398
2678
  <small>Axlsx::CellAlignment</small>
@@ -2400,7 +2680,7 @@
2400
2680
  </li>
2401
2681
 
2402
2682
 
2403
- <li class="r2 ">
2683
+ <li class="r1 ">
2404
2684
  <span class='object_link'><a href="Axlsx/Axis.html#tickLblPos-instance_method" title="Axlsx::Axis#tickLblPos (method)">#tickLblPos</a></span>
2405
2685
 
2406
2686
  <small>Axlsx::Axis</small>
@@ -2408,7 +2688,7 @@
2408
2688
  </li>
2409
2689
 
2410
2690
 
2411
- <li class="r1 ">
2691
+ <li class="r2 ">
2412
2692
  <span class='object_link'><a href="Axlsx/SerAxis.html#tickLblSkip-instance_method" title="Axlsx::SerAxis#tickLblSkip (method)">#tickLblSkip</a></span>
2413
2693
 
2414
2694
  <small>Axlsx::SerAxis</small>
@@ -2416,7 +2696,7 @@
2416
2696
  </li>
2417
2697
 
2418
2698
 
2419
- <li class="r2 ">
2699
+ <li class="r1 ">
2420
2700
  <span class='object_link'><a href="Axlsx/SerAxis.html#tickMarkSkip-instance_method" title="Axlsx::SerAxis#tickMarkSkip (method)">#tickMarkSkip</a></span>
2421
2701
 
2422
2702
  <small>Axlsx::SerAxis</small>
@@ -2424,7 +2704,7 @@
2424
2704
  </li>
2425
2705
 
2426
2706
 
2427
- <li class="r1 ">
2707
+ <li class="r2 ">
2428
2708
  <span class='object_link'><a href="Axlsx/Color.html#tint-instance_method" title="Axlsx::Color#tint (method)">#tint</a></span>
2429
2709
 
2430
2710
  <small>Axlsx::Color</small>
@@ -2432,7 +2712,7 @@
2432
2712
  </li>
2433
2713
 
2434
2714
 
2435
- <li class="r2 ">
2715
+ <li class="r1 ">
2436
2716
  <span class='object_link'><a href="Axlsx/Chart.html#title-instance_method" title="Axlsx::Chart#title (method)">#title</a></span>
2437
2717
 
2438
2718
  <small>Axlsx::Chart</small>
@@ -2440,7 +2720,7 @@
2440
2720
  </li>
2441
2721
 
2442
2722
 
2443
- <li class="r1 ">
2723
+ <li class="r2 ">
2444
2724
  <span class='object_link'><a href="Axlsx/Series.html#title-instance_method" title="Axlsx::Series#title (method)">#title</a></span>
2445
2725
 
2446
2726
  <small>Axlsx::Series</small>
@@ -2448,6 +2728,14 @@
2448
2728
  </li>
2449
2729
 
2450
2730
 
2731
+ <li class="r1 ">
2732
+ <span class='object_link'><a href="Axlsx/Chart.html#to-instance_method" title="Axlsx::Chart#to (method)">#to</a></span>
2733
+
2734
+ <small>Axlsx::Chart</small>
2735
+
2736
+ </li>
2737
+
2738
+
2451
2739
  <li class="r2 ">
2452
2740
  <span class='object_link'><a href="Axlsx/TwoCellAnchor.html#to-instance_method" title="Axlsx::TwoCellAnchor#to (method)">#to</a></span>
2453
2741
 
@@ -2457,297 +2745,297 @@
2457
2745
 
2458
2746
 
2459
2747
  <li class="r1 ">
2460
- <span class='object_link'><a href="Axlsx/Chart.html#to-instance_method" title="Axlsx::Chart#to (method)">#to</a></span>
2748
+ <span class='object_link'><a href="Axlsx/Row.html#to_ary-instance_method" title="Axlsx::Row#to_ary (method)">#to_ary</a></span>
2461
2749
 
2462
- <small>Axlsx::Chart</small>
2750
+ <small>Axlsx::Row</small>
2463
2751
 
2464
2752
  </li>
2465
2753
 
2466
2754
 
2467
2755
  <li class="r2 ">
2468
- <span class='object_link'><a href="Axlsx/Row.html#to_ary-instance_method" title="Axlsx::Row#to_ary (method)">#to_ary</a></span>
2756
+ <span class='object_link'><a href="Axlsx/Scaling.html#to_xml-instance_method" title="Axlsx::Scaling#to_xml (method)">#to_xml</a></span>
2469
2757
 
2470
- <small>Axlsx::Row</small>
2758
+ <small>Axlsx::Scaling</small>
2471
2759
 
2472
2760
  </li>
2473
2761
 
2474
2762
 
2475
2763
  <li class="r1 ">
2476
- <span class='object_link'><a href="Axlsx/ValAxis.html#to_xml-instance_method" title="Axlsx::ValAxis#to_xml (method)">#to_xml</a></span>
2764
+ <span class='object_link'><a href="Axlsx/NumFmt.html#to_xml-instance_method" title="Axlsx::NumFmt#to_xml (method)">#to_xml</a></span>
2477
2765
 
2478
- <small>Axlsx::ValAxis</small>
2766
+ <small>Axlsx::NumFmt</small>
2479
2767
 
2480
2768
  </li>
2481
2769
 
2482
2770
 
2483
2771
  <li class="r2 ">
2484
- <span class='object_link'><a href="Axlsx/Font.html#to_xml-instance_method" title="Axlsx::Font#to_xml (method)">#to_xml</a></span>
2772
+ <span class='object_link'><a href="Axlsx/GradientFill.html#to_xml-instance_method" title="Axlsx::GradientFill#to_xml (method)">#to_xml</a></span>
2485
2773
 
2486
- <small>Axlsx::Font</small>
2774
+ <small>Axlsx::GradientFill</small>
2487
2775
 
2488
2776
  </li>
2489
2777
 
2490
2778
 
2491
2779
  <li class="r1 ">
2492
- <span class='object_link'><a href="Axlsx/Default.html#to_xml-instance_method" title="Axlsx::Default#to_xml (method)">#to_xml</a></span>
2780
+ <span class='object_link'><a href="Axlsx/Axis.html#to_xml-instance_method" title="Axlsx::Axis#to_xml (method)">#to_xml</a></span>
2493
2781
 
2494
- <small>Axlsx::Default</small>
2782
+ <small>Axlsx::Axis</small>
2495
2783
 
2496
2784
  </li>
2497
2785
 
2498
2786
 
2499
2787
  <li class="r2 ">
2500
- <span class='object_link'><a href="Axlsx/CellProtection.html#to_xml-instance_method" title="Axlsx::CellProtection#to_xml (method)">#to_xml</a></span>
2788
+ <span class='object_link'><a href="Axlsx/Fill.html#to_xml-instance_method" title="Axlsx::Fill#to_xml (method)">#to_xml</a></span>
2501
2789
 
2502
- <small>Axlsx::CellProtection</small>
2790
+ <small>Axlsx::Fill</small>
2503
2791
 
2504
2792
  </li>
2505
2793
 
2506
2794
 
2507
2795
  <li class="r1 ">
2508
- <span class='object_link'><a href="Axlsx/Chart.html#to_xml-instance_method" title="Axlsx::Chart#to_xml (method)">#to_xml</a></span>
2796
+ <span class='object_link'><a href="Axlsx/Relationship.html#to_xml-instance_method" title="Axlsx::Relationship#to_xml (method)">#to_xml</a></span>
2509
2797
 
2510
- <small>Axlsx::Chart</small>
2798
+ <small>Axlsx::Relationship</small>
2511
2799
 
2512
2800
  </li>
2513
2801
 
2514
2802
 
2515
2803
  <li class="r2 ">
2516
- <span class='object_link'><a href="Axlsx/Axis.html#to_xml-instance_method" title="Axlsx::Axis#to_xml (method)">#to_xml</a></span>
2804
+ <span class='object_link'><a href="Axlsx/PictureLocking.html#to_xml-instance_method" title="Axlsx::PictureLocking#to_xml (method)">#to_xml</a></span>
2517
2805
 
2518
- <small>Axlsx::Axis</small>
2806
+ <small>Axlsx::PictureLocking</small>
2519
2807
 
2520
2808
  </li>
2521
2809
 
2522
2810
 
2523
2811
  <li class="r1 ">
2524
- <span class='object_link'><a href="Axlsx/Core.html#to_xml-instance_method" title="Axlsx::Core#to_xml (method)">#to_xml</a></span>
2812
+ <span class='object_link'><a href="Axlsx/Marker.html#to_xml-instance_method" title="Axlsx::Marker#to_xml (method)">#to_xml</a></span>
2525
2813
 
2526
- <small>Axlsx::Core</small>
2814
+ <small>Axlsx::Marker</small>
2527
2815
 
2528
2816
  </li>
2529
2817
 
2530
2818
 
2531
2819
  <li class="r2 ">
2532
- <span class='object_link'><a href="Axlsx/Override.html#to_xml-instance_method" title="Axlsx::Override#to_xml (method)">#to_xml</a></span>
2820
+ <span class='object_link'><a href="Axlsx/CatAxisData.html#to_xml-instance_method" title="Axlsx::CatAxisData#to_xml (method)">#to_xml</a></span>
2533
2821
 
2534
- <small>Axlsx::Override</small>
2822
+ <small>Axlsx::CatAxisData</small>
2535
2823
 
2536
2824
  </li>
2537
2825
 
2538
2826
 
2539
2827
  <li class="r1 ">
2540
- <span class='object_link'><a href="Axlsx/App.html#to_xml-instance_method" title="Axlsx::App#to_xml (method)">#to_xml</a></span>
2828
+ <span class='object_link'><a href="Axlsx/Worksheet.html#to_xml-instance_method" title="Axlsx::Worksheet#to_xml (method)">#to_xml</a></span>
2541
2829
 
2542
- <small>Axlsx::App</small>
2830
+ <small>Axlsx::Worksheet</small>
2543
2831
 
2544
2832
  </li>
2545
2833
 
2546
2834
 
2547
2835
  <li class="r2 ">
2548
- <span class='object_link'><a href="Axlsx/Workbook.html#to_xml-instance_method" title="Axlsx::Workbook#to_xml (method)">#to_xml</a></span>
2836
+ <span class='object_link'><a href="Axlsx/App.html#to_xml-instance_method" title="Axlsx::App#to_xml (method)">#to_xml</a></span>
2549
2837
 
2550
- <small>Axlsx::Workbook</small>
2838
+ <small>Axlsx::App</small>
2551
2839
 
2552
2840
  </li>
2553
2841
 
2554
2842
 
2555
2843
  <li class="r1 ">
2556
- <span class='object_link'><a href="Axlsx/PatternFill.html#to_xml-instance_method" title="Axlsx::PatternFill#to_xml (method)">#to_xml</a></span>
2844
+ <span class='object_link'><a href="Axlsx/ContentType.html#to_xml-instance_method" title="Axlsx::ContentType#to_xml (method)">#to_xml</a></span>
2557
2845
 
2558
- <small>Axlsx::PatternFill</small>
2846
+ <small>Axlsx::ContentType</small>
2559
2847
 
2560
2848
  </li>
2561
2849
 
2562
2850
 
2563
2851
  <li class="r2 ">
2564
- <span class='object_link'><a href="Axlsx/BorderPr.html#to_xml-instance_method" title="Axlsx::BorderPr#to_xml (method)">#to_xml</a></span>
2852
+ <span class='object_link'><a href="Axlsx/PatternFill.html#to_xml-instance_method" title="Axlsx::PatternFill#to_xml (method)">#to_xml</a></span>
2565
2853
 
2566
- <small>Axlsx::BorderPr</small>
2854
+ <small>Axlsx::PatternFill</small>
2567
2855
 
2568
2856
  </li>
2569
2857
 
2570
2858
 
2571
2859
  <li class="r1 ">
2572
- <span class='object_link'><a href="Axlsx/Pie3DChart.html#to_xml-instance_method" title="Axlsx::Pie3DChart#to_xml (method)">#to_xml</a></span>
2860
+ <span class='object_link'><a href="Axlsx/View3D.html#to_xml-instance_method" title="Axlsx::View3D#to_xml (method)">#to_xml</a></span>
2573
2861
 
2574
- <small>Axlsx::Pie3DChart</small>
2862
+ <small>Axlsx::View3D</small>
2575
2863
 
2576
2864
  </li>
2577
2865
 
2578
2866
 
2579
2867
  <li class="r2 ">
2580
- <span class='object_link'><a href="Axlsx/Xf.html#to_xml-instance_method" title="Axlsx::Xf#to_xml (method)">#to_xml</a></span>
2868
+ <span class='object_link'><a href="Axlsx/GraphicFrame.html#to_xml-instance_method" title="Axlsx::GraphicFrame#to_xml (method)">#to_xml</a></span>
2581
2869
 
2582
- <small>Axlsx::Xf</small>
2870
+ <small>Axlsx::GraphicFrame</small>
2583
2871
 
2584
2872
  </li>
2585
2873
 
2586
2874
 
2587
2875
  <li class="r1 ">
2588
- <span class='object_link'><a href="Axlsx/Border.html#to_xml-instance_method" title="Axlsx::Border#to_xml (method)">#to_xml</a></span>
2876
+ <span class='object_link'><a href="Axlsx/Default.html#to_xml-instance_method" title="Axlsx::Default#to_xml (method)">#to_xml</a></span>
2589
2877
 
2590
- <small>Axlsx::Border</small>
2878
+ <small>Axlsx::Default</small>
2591
2879
 
2592
2880
  </li>
2593
2881
 
2594
2882
 
2595
2883
  <li class="r2 ">
2596
- <span class='object_link'><a href="Axlsx/TwoCellAnchor.html#to_xml-instance_method" title="Axlsx::TwoCellAnchor#to_xml (method)">#to_xml</a></span>
2884
+ <span class='object_link'><a href="Axlsx/Series.html#to_xml-instance_method" title="Axlsx::Series#to_xml (method)">#to_xml</a></span>
2597
2885
 
2598
- <small>Axlsx::TwoCellAnchor</small>
2886
+ <small>Axlsx::Series</small>
2599
2887
 
2600
2888
  </li>
2601
2889
 
2602
2890
 
2603
2891
  <li class="r1 ">
2604
- <span class='object_link'><a href="Axlsx/CatAxisData.html#to_xml-instance_method" title="Axlsx::CatAxisData#to_xml (method)">#to_xml</a></span>
2892
+ <span class='object_link'><a href="Axlsx/LineSeries.html#to_xml-instance_method" title="Axlsx::LineSeries#to_xml (method)">#to_xml</a></span>
2605
2893
 
2606
- <small>Axlsx::CatAxisData</small>
2894
+ <small>Axlsx::LineSeries</small>
2607
2895
 
2608
2896
  </li>
2609
2897
 
2610
2898
 
2611
2899
  <li class="r2 ">
2612
- <span class='object_link'><a href="Axlsx/GradientFill.html#to_xml-instance_method" title="Axlsx::GradientFill#to_xml (method)">#to_xml</a></span>
2900
+ <span class='object_link'><a href="Axlsx/Relationships.html#to_xml-instance_method" title="Axlsx::Relationships#to_xml (method)">#to_xml</a></span>
2613
2901
 
2614
- <small>Axlsx::GradientFill</small>
2902
+ <small>Axlsx::Relationships</small>
2615
2903
 
2616
2904
  </li>
2617
2905
 
2618
2906
 
2619
2907
  <li class="r1 ">
2620
- <span class='object_link'><a href="Axlsx/Fill.html#to_xml-instance_method" title="Axlsx::Fill#to_xml (method)">#to_xml</a></span>
2908
+ <span class='object_link'><a href="Axlsx/Override.html#to_xml-instance_method" title="Axlsx::Override#to_xml (method)">#to_xml</a></span>
2621
2909
 
2622
- <small>Axlsx::Fill</small>
2910
+ <small>Axlsx::Override</small>
2623
2911
 
2624
2912
  </li>
2625
2913
 
2626
2914
 
2627
2915
  <li class="r2 ">
2628
- <span class='object_link'><a href="Axlsx/GradientStop.html#to_xml-instance_method" title="Axlsx::GradientStop#to_xml (method)">#to_xml</a></span>
2916
+ <span class='object_link'><a href="Axlsx/TableStyle.html#to_xml-instance_method" title="Axlsx::TableStyle#to_xml (method)">#to_xml</a></span>
2629
2917
 
2630
- <small>Axlsx::GradientStop</small>
2918
+ <small>Axlsx::TableStyle</small>
2631
2919
 
2632
2920
  </li>
2633
2921
 
2634
2922
 
2635
2923
  <li class="r1 ">
2636
- <span class='object_link'><a href="Axlsx/Marker.html#to_xml-instance_method" title="Axlsx::Marker#to_xml (method)">#to_xml</a></span>
2924
+ <span class='object_link'><a href="Axlsx/Title.html#to_xml-instance_method" title="Axlsx::Title#to_xml (method)">#to_xml</a></span>
2637
2925
 
2638
- <small>Axlsx::Marker</small>
2926
+ <small>Axlsx::Title</small>
2639
2927
 
2640
2928
  </li>
2641
2929
 
2642
2930
 
2643
2931
  <li class="r2 ">
2644
- <span class='object_link'><a href="Axlsx/View3D.html#to_xml-instance_method" title="Axlsx::View3D#to_xml (method)">#to_xml</a></span>
2932
+ <span class='object_link'><a href="Axlsx/SerAxis.html#to_xml-instance_method" title="Axlsx::SerAxis#to_xml (method)">#to_xml</a></span>
2645
2933
 
2646
- <small>Axlsx::View3D</small>
2934
+ <small>Axlsx::SerAxis</small>
2647
2935
 
2648
2936
  </li>
2649
2937
 
2650
2938
 
2651
2939
  <li class="r1 ">
2652
- <span class='object_link'><a href="Axlsx/SerAxis.html#to_xml-instance_method" title="Axlsx::SerAxis#to_xml (method)">#to_xml</a></span>
2940
+ <span class='object_link'><a href="Axlsx/TableStyleElement.html#to_xml-instance_method" title="Axlsx::TableStyleElement#to_xml (method)">#to_xml</a></span>
2653
2941
 
2654
- <small>Axlsx::SerAxis</small>
2942
+ <small>Axlsx::TableStyleElement</small>
2655
2943
 
2656
2944
  </li>
2657
2945
 
2658
2946
 
2659
2947
  <li class="r2 ">
2660
- <span class='object_link'><a href="Axlsx/CellStyle.html#to_xml-instance_method" title="Axlsx::CellStyle#to_xml (method)">#to_xml</a></span>
2948
+ <span class='object_link'><a href="Axlsx/CellProtection.html#to_xml-instance_method" title="Axlsx::CellProtection#to_xml (method)">#to_xml</a></span>
2661
2949
 
2662
- <small>Axlsx::CellStyle</small>
2950
+ <small>Axlsx::CellProtection</small>
2663
2951
 
2664
2952
  </li>
2665
2953
 
2666
2954
 
2667
2955
  <li class="r1 ">
2668
- <span class='object_link'><a href="Axlsx/LineSeries.html#to_xml-instance_method" title="Axlsx::LineSeries#to_xml (method)">#to_xml</a></span>
2956
+ <span class='object_link'><a href="Axlsx/Pic.html#to_xml-instance_method" title="Axlsx::Pic#to_xml (method)">#to_xml</a></span>
2669
2957
 
2670
- <small>Axlsx::LineSeries</small>
2958
+ <small>Axlsx::Pic</small>
2671
2959
 
2672
2960
  </li>
2673
2961
 
2674
2962
 
2675
2963
  <li class="r2 ">
2676
- <span class='object_link'><a href="Axlsx/Series.html#to_xml-instance_method" title="Axlsx::Series#to_xml (method)">#to_xml</a></span>
2964
+ <span class='object_link'><a href="Axlsx/Pie3DChart.html#to_xml-instance_method" title="Axlsx::Pie3DChart#to_xml (method)">#to_xml</a></span>
2677
2965
 
2678
- <small>Axlsx::Series</small>
2966
+ <small>Axlsx::Pie3DChart</small>
2679
2967
 
2680
2968
  </li>
2681
2969
 
2682
2970
 
2683
2971
  <li class="r1 ">
2684
- <span class='object_link'><a href="Axlsx/CellAlignment.html#to_xml-instance_method" title="Axlsx::CellAlignment#to_xml (method)">#to_xml</a></span>
2972
+ <span class='object_link'><a href="Axlsx/TwoCellAnchor.html#to_xml-instance_method" title="Axlsx::TwoCellAnchor#to_xml (method)">#to_xml</a></span>
2685
2973
 
2686
- <small>Axlsx::CellAlignment</small>
2974
+ <small>Axlsx::TwoCellAnchor</small>
2687
2975
 
2688
2976
  </li>
2689
2977
 
2690
2978
 
2691
2979
  <li class="r2 ">
2692
- <span class='object_link'><a href="Axlsx/OneCellAnchor.html#to_xml-instance_method" title="Axlsx::OneCellAnchor#to_xml (method)">#to_xml</a></span>
2980
+ <span class='object_link'><a href="Axlsx/Font.html#to_xml-instance_method" title="Axlsx::Font#to_xml (method)">#to_xml</a></span>
2693
2981
 
2694
- <small>Axlsx::OneCellAnchor</small>
2982
+ <small>Axlsx::Font</small>
2695
2983
 
2696
2984
  </li>
2697
2985
 
2698
2986
 
2699
2987
  <li class="r1 ">
2700
- <span class='object_link'><a href="Axlsx/Relationships.html#to_xml-instance_method" title="Axlsx::Relationships#to_xml (method)">#to_xml</a></span>
2988
+ <span class='object_link'><a href="Axlsx/PieSeries.html#to_xml-instance_method" title="Axlsx::PieSeries#to_xml (method)">#to_xml</a></span>
2701
2989
 
2702
- <small>Axlsx::Relationships</small>
2990
+ <small>Axlsx::PieSeries</small>
2703
2991
 
2704
2992
  </li>
2705
2993
 
2706
2994
 
2707
2995
  <li class="r2 ">
2708
- <span class='object_link'><a href="Axlsx/Color.html#to_xml-instance_method" title="Axlsx::Color#to_xml (method)">#to_xml</a></span>
2996
+ <span class='object_link'><a href="Axlsx/CellAlignment.html#to_xml-instance_method" title="Axlsx::CellAlignment#to_xml (method)">#to_xml</a></span>
2709
2997
 
2710
- <small>Axlsx::Color</small>
2998
+ <small>Axlsx::CellAlignment</small>
2711
2999
 
2712
3000
  </li>
2713
3001
 
2714
3002
 
2715
3003
  <li class="r1 ">
2716
- <span class='object_link'><a href="Axlsx/SeriesTitle.html#to_xml-instance_method" title="Axlsx::SeriesTitle#to_xml (method)">#to_xml</a></span>
3004
+ <span class='object_link'><a href="Axlsx/Row.html#to_xml-instance_method" title="Axlsx::Row#to_xml (method)">#to_xml</a></span>
2717
3005
 
2718
- <small>Axlsx::SeriesTitle</small>
3006
+ <small>Axlsx::Row</small>
2719
3007
 
2720
3008
  </li>
2721
3009
 
2722
3010
 
2723
3011
  <li class="r2 ">
2724
- <span class='object_link'><a href="Axlsx/Title.html#to_xml-instance_method" title="Axlsx::Title#to_xml (method)">#to_xml</a></span>
3012
+ <span class='object_link'><a href="Axlsx/Styles.html#to_xml-instance_method" title="Axlsx::Styles#to_xml (method)">#to_xml</a></span>
2725
3013
 
2726
- <small>Axlsx::Title</small>
3014
+ <small>Axlsx::Styles</small>
2727
3015
 
2728
3016
  </li>
2729
3017
 
2730
3018
 
2731
3019
  <li class="r1 ">
2732
- <span class='object_link'><a href="Axlsx/Cell.html#to_xml-instance_method" title="Axlsx::Cell#to_xml (method)">#to_xml</a></span>
3020
+ <span class='object_link'><a href="Axlsx/Color.html#to_xml-instance_method" title="Axlsx::Color#to_xml (method)">#to_xml</a></span>
2733
3021
 
2734
- <small>Axlsx::Cell</small>
3022
+ <small>Axlsx::Color</small>
2735
3023
 
2736
3024
  </li>
2737
3025
 
2738
3026
 
2739
3027
  <li class="r2 ">
2740
- <span class='object_link'><a href="Axlsx/Bar3DChart.html#to_xml-instance_method" title="Axlsx::Bar3DChart#to_xml (method)">#to_xml</a></span>
3028
+ <span class='object_link'><a href="Axlsx/GradientStop.html#to_xml-instance_method" title="Axlsx::GradientStop#to_xml (method)">#to_xml</a></span>
2741
3029
 
2742
- <small>Axlsx::Bar3DChart</small>
3030
+ <small>Axlsx::GradientStop</small>
2743
3031
 
2744
3032
  </li>
2745
3033
 
2746
3034
 
2747
3035
  <li class="r1 ">
2748
- <span class='object_link'><a href="Axlsx/TableStyleElement.html#to_xml-instance_method" title="Axlsx::TableStyleElement#to_xml (method)">#to_xml</a></span>
3036
+ <span class='object_link'><a href="Axlsx/SeriesTitle.html#to_xml-instance_method" title="Axlsx::SeriesTitle#to_xml (method)">#to_xml</a></span>
2749
3037
 
2750
- <small>Axlsx::TableStyleElement</small>
3038
+ <small>Axlsx::SeriesTitle</small>
2751
3039
 
2752
3040
  </li>
2753
3041
 
@@ -2761,129 +3049,129 @@
2761
3049
 
2762
3050
 
2763
3051
  <li class="r1 ">
2764
- <span class='object_link'><a href="Axlsx/CatAxis.html#to_xml-instance_method" title="Axlsx::CatAxis#to_xml (method)">#to_xml</a></span>
3052
+ <span class='object_link'><a href="Axlsx/Core.html#to_xml-instance_method" title="Axlsx::Core#to_xml (method)">#to_xml</a></span>
2765
3053
 
2766
- <small>Axlsx::CatAxis</small>
3054
+ <small>Axlsx::Core</small>
2767
3055
 
2768
3056
  </li>
2769
3057
 
2770
3058
 
2771
3059
  <li class="r2 ">
2772
- <span class='object_link'><a href="Axlsx/ContentType.html#to_xml-instance_method" title="Axlsx::ContentType#to_xml (method)">#to_xml</a></span>
3060
+ <span class='object_link'><a href="Axlsx/BarSeries.html#to_xml-instance_method" title="Axlsx::BarSeries#to_xml (method)">#to_xml</a></span>
2773
3061
 
2774
- <small>Axlsx::ContentType</small>
3062
+ <small>Axlsx::BarSeries</small>
2775
3063
 
2776
3064
  </li>
2777
3065
 
2778
3066
 
2779
3067
  <li class="r1 ">
2780
- <span class='object_link'><a href="Axlsx/Pic.html#to_xml-instance_method" title="Axlsx::Pic#to_xml (method)">#to_xml</a></span>
3068
+ <span class='object_link'><a href="Axlsx/TableStyles.html#to_xml-instance_method" title="Axlsx::TableStyles#to_xml (method)">#to_xml</a></span>
2781
3069
 
2782
- <small>Axlsx::Pic</small>
3070
+ <small>Axlsx::TableStyles</small>
2783
3071
 
2784
3072
  </li>
2785
3073
 
2786
3074
 
2787
3075
  <li class="r2 ">
2788
- <span class='object_link'><a href="Axlsx/NumFmt.html#to_xml-instance_method" title="Axlsx::NumFmt#to_xml (method)">#to_xml</a></span>
3076
+ <span class='object_link'><a href="Axlsx/Chart.html#to_xml-instance_method" title="Axlsx::Chart#to_xml (method)">#to_xml</a></span>
2789
3077
 
2790
- <small>Axlsx::NumFmt</small>
3078
+ <small>Axlsx::Chart</small>
2791
3079
 
2792
3080
  </li>
2793
3081
 
2794
3082
 
2795
3083
  <li class="r1 ">
2796
- <span class='object_link'><a href="Axlsx/TableStyle.html#to_xml-instance_method" title="Axlsx::TableStyle#to_xml (method)">#to_xml</a></span>
3084
+ <span class='object_link'><a href="Axlsx/CellStyle.html#to_xml-instance_method" title="Axlsx::CellStyle#to_xml (method)">#to_xml</a></span>
2797
3085
 
2798
- <small>Axlsx::TableStyle</small>
3086
+ <small>Axlsx::CellStyle</small>
2799
3087
 
2800
3088
  </li>
2801
3089
 
2802
3090
 
2803
3091
  <li class="r2 ">
2804
- <span class='object_link'><a href="Axlsx/Worksheet.html#to_xml-instance_method" title="Axlsx::Worksheet#to_xml (method)">#to_xml</a></span>
3092
+ <span class='object_link'><a href="Axlsx/ValAxis.html#to_xml-instance_method" title="Axlsx::ValAxis#to_xml (method)">#to_xml</a></span>
2805
3093
 
2806
- <small>Axlsx::Worksheet</small>
3094
+ <small>Axlsx::ValAxis</small>
2807
3095
 
2808
3096
  </li>
2809
3097
 
2810
3098
 
2811
3099
  <li class="r1 ">
2812
- <span class='object_link'><a href="Axlsx/Styles.html#to_xml-instance_method" title="Axlsx::Styles#to_xml (method)">#to_xml</a></span>
3100
+ <span class='object_link'><a href="Axlsx/BorderPr.html#to_xml-instance_method" title="Axlsx::BorderPr#to_xml (method)">#to_xml</a></span>
2813
3101
 
2814
- <small>Axlsx::Styles</small>
3102
+ <small>Axlsx::BorderPr</small>
2815
3103
 
2816
3104
  </li>
2817
3105
 
2818
3106
 
2819
3107
  <li class="r2 ">
2820
- <span class='object_link'><a href="Axlsx/GraphicFrame.html#to_xml-instance_method" title="Axlsx::GraphicFrame#to_xml (method)">#to_xml</a></span>
3108
+ <span class='object_link'><a href="Axlsx/Cell.html#to_xml-instance_method" title="Axlsx::Cell#to_xml (method)">#to_xml</a></span>
2821
3109
 
2822
- <small>Axlsx::GraphicFrame</small>
3110
+ <small>Axlsx::Cell</small>
2823
3111
 
2824
3112
  </li>
2825
3113
 
2826
3114
 
2827
3115
  <li class="r1 ">
2828
- <span class='object_link'><a href="Axlsx/TableStyles.html#to_xml-instance_method" title="Axlsx::TableStyles#to_xml (method)">#to_xml</a></span>
3116
+ <span class='object_link'><a href="Axlsx/Xf.html#to_xml-instance_method" title="Axlsx::Xf#to_xml (method)">#to_xml</a></span>
2829
3117
 
2830
- <small>Axlsx::TableStyles</small>
3118
+ <small>Axlsx::Xf</small>
2831
3119
 
2832
3120
  </li>
2833
3121
 
2834
3122
 
2835
3123
  <li class="r2 ">
2836
- <span class='object_link'><a href="Axlsx/Line3DChart.html#to_xml-instance_method" title="Axlsx::Line3DChart#to_xml (method)">#to_xml</a></span>
3124
+ <span class='object_link'><a href="Axlsx/CatAxis.html#to_xml-instance_method" title="Axlsx::CatAxis#to_xml (method)">#to_xml</a></span>
2837
3125
 
2838
- <small>Axlsx::Line3DChart</small>
3126
+ <small>Axlsx::CatAxis</small>
2839
3127
 
2840
3128
  </li>
2841
3129
 
2842
3130
 
2843
3131
  <li class="r1 ">
2844
- <span class='object_link'><a href="Axlsx/Scaling.html#to_xml-instance_method" title="Axlsx::Scaling#to_xml (method)">#to_xml</a></span>
3132
+ <span class='object_link'><a href="Axlsx/Line3DChart.html#to_xml-instance_method" title="Axlsx::Line3DChart#to_xml (method)">#to_xml</a></span>
2845
3133
 
2846
- <small>Axlsx::Scaling</small>
3134
+ <small>Axlsx::Line3DChart</small>
2847
3135
 
2848
3136
  </li>
2849
3137
 
2850
3138
 
2851
3139
  <li class="r2 ">
2852
- <span class='object_link'><a href="Axlsx/Relationship.html#to_xml-instance_method" title="Axlsx::Relationship#to_xml (method)">#to_xml</a></span>
3140
+ <span class='object_link'><a href="Axlsx/ValAxisData.html#to_xml-instance_method" title="Axlsx::ValAxisData#to_xml (method)">#to_xml</a></span>
2853
3141
 
2854
- <small>Axlsx::Relationship</small>
3142
+ <small>Axlsx::ValAxisData</small>
2855
3143
 
2856
3144
  </li>
2857
3145
 
2858
3146
 
2859
3147
  <li class="r1 ">
2860
- <span class='object_link'><a href="Axlsx/ValAxisData.html#to_xml-instance_method" title="Axlsx::ValAxisData#to_xml (method)">#to_xml</a></span>
3148
+ <span class='object_link'><a href="Axlsx/OneCellAnchor.html#to_xml-instance_method" title="Axlsx::OneCellAnchor#to_xml (method)">#to_xml</a></span>
2861
3149
 
2862
- <small>Axlsx::ValAxisData</small>
3150
+ <small>Axlsx::OneCellAnchor</small>
2863
3151
 
2864
3152
  </li>
2865
3153
 
2866
3154
 
2867
3155
  <li class="r2 ">
2868
- <span class='object_link'><a href="Axlsx/PieSeries.html#to_xml-instance_method" title="Axlsx::PieSeries#to_xml (method)">#to_xml</a></span>
3156
+ <span class='object_link'><a href="Axlsx/Workbook.html#to_xml-instance_method" title="Axlsx::Workbook#to_xml (method)">#to_xml</a></span>
2869
3157
 
2870
- <small>Axlsx::PieSeries</small>
3158
+ <small>Axlsx::Workbook</small>
2871
3159
 
2872
3160
  </li>
2873
3161
 
2874
3162
 
2875
3163
  <li class="r1 ">
2876
- <span class='object_link'><a href="Axlsx/BarSeries.html#to_xml-instance_method" title="Axlsx::BarSeries#to_xml (method)">#to_xml</a></span>
3164
+ <span class='object_link'><a href="Axlsx/Bar3DChart.html#to_xml-instance_method" title="Axlsx::Bar3DChart#to_xml (method)">#to_xml</a></span>
2877
3165
 
2878
- <small>Axlsx::BarSeries</small>
3166
+ <small>Axlsx::Bar3DChart</small>
2879
3167
 
2880
3168
  </li>
2881
3169
 
2882
3170
 
2883
3171
  <li class="r2 ">
2884
- <span class='object_link'><a href="Axlsx/Row.html#to_xml-instance_method" title="Axlsx::Row#to_xml (method)">#to_xml</a></span>
3172
+ <span class='object_link'><a href="Axlsx/Border.html#to_xml-instance_method" title="Axlsx::Border#to_xml (method)">#to_xml</a></span>
2885
3173
 
2886
- <small>Axlsx::Row</small>
3174
+ <small>Axlsx::Border</small>
2887
3175
 
2888
3176
  </li>
2889
3177
 
@@ -2921,6 +3209,14 @@
2921
3209
 
2922
3210
 
2923
3211
  <li class="r1 ">
3212
+ <span class='object_link'><a href="Axlsx/Cell.html#u-instance_method" title="Axlsx::Cell#u (method)">#u</a></span>
3213
+
3214
+ <small>Axlsx::Cell</small>
3215
+
3216
+ </li>
3217
+
3218
+
3219
+ <li class="r2 ">
2924
3220
  <span class='object_link'><a href="Axlsx/Worksheet.html#update_auto_fit_data-instance_method" title="Axlsx::Worksheet#update_auto_fit_data (method)">#update_auto_fit_data</a></span>
2925
3221
 
2926
3222
  <small>Axlsx::Worksheet</small>
@@ -2928,7 +3224,7 @@
2928
3224
  </li>
2929
3225
 
2930
3226
 
2931
- <li class="r2 ">
3227
+ <li class="r1 ">
2932
3228
  <span class='object_link'><a href="Axlsx/Bar3DChart.html#valAxis-instance_method" title="Axlsx::Bar3DChart#valAxis (method)">#valAxis</a></span>
2933
3229
 
2934
3230
  <small>Axlsx::Bar3DChart</small>
@@ -2936,7 +3232,7 @@
2936
3232
  </li>
2937
3233
 
2938
3234
 
2939
- <li class="r1 ">
3235
+ <li class="r2 ">
2940
3236
  <span class='object_link'><a href="Axlsx/Line3DChart.html#valAxis-instance_method" title="Axlsx::Line3DChart#valAxis (method)">#valAxis</a></span>
2941
3237
 
2942
3238
  <small>Axlsx::Line3DChart</small>
@@ -2944,40 +3240,48 @@
2944
3240
  </li>
2945
3241
 
2946
3242
 
3243
+ <li class="r1 ">
3244
+ <span class='object_link'><a href="Axlsx/RestrictionValidator.html#validate-class_method" title="Axlsx::RestrictionValidator.validate (method)">validate</a></span>
3245
+
3246
+ <small>Axlsx::RestrictionValidator</small>
3247
+
3248
+ </li>
3249
+
3250
+
2947
3251
  <li class="r2 ">
2948
- <span class='object_link'><a href="Axlsx/Package.html#validate-instance_method" title="Axlsx::Package#validate (method)">#validate</a></span>
3252
+ <span class='object_link'><a href="Axlsx/DataTypeValidator.html#validate-class_method" title="Axlsx::DataTypeValidator.validate (method)">validate</a></span>
2949
3253
 
2950
- <small>Axlsx::Package</small>
3254
+ <small>Axlsx::DataTypeValidator</small>
2951
3255
 
2952
3256
  </li>
2953
3257
 
2954
3258
 
2955
3259
  <li class="r1 ">
2956
- <span class='object_link'><a href="Axlsx/RegexValidator.html#validate-class_method" title="Axlsx::RegexValidator.validate (method)">validate</a></span>
3260
+ <span class='object_link'><a href="Axlsx/Package.html#validate-instance_method" title="Axlsx::Package#validate (method)">#validate</a></span>
2957
3261
 
2958
- <small>Axlsx::RegexValidator</small>
3262
+ <small>Axlsx::Package</small>
2959
3263
 
2960
3264
  </li>
2961
3265
 
2962
3266
 
2963
3267
  <li class="r2 ">
2964
- <span class='object_link'><a href="Axlsx/RestrictionValidator.html#validate-class_method" title="Axlsx::RestrictionValidator.validate (method)">validate</a></span>
3268
+ <span class='object_link'><a href="Axlsx/RegexValidator.html#validate-class_method" title="Axlsx::RegexValidator.validate (method)">validate</a></span>
2965
3269
 
2966
- <small>Axlsx::RestrictionValidator</small>
3270
+ <small>Axlsx::RegexValidator</small>
2967
3271
 
2968
3272
  </li>
2969
3273
 
2970
3274
 
2971
3275
  <li class="r1 ">
2972
- <span class='object_link'><a href="Axlsx/DataTypeValidator.html#validate-class_method" title="Axlsx::DataTypeValidator.validate (method)">validate</a></span>
3276
+ <span class='object_link'><a href="Axlsx.html#validate_boolean-class_method" title="Axlsx.validate_boolean (method)">validate_boolean</a></span>
2973
3277
 
2974
- <small>Axlsx::DataTypeValidator</small>
3278
+ <small>Axlsx</small>
2975
3279
 
2976
3280
  </li>
2977
3281
 
2978
3282
 
2979
3283
  <li class="r2 ">
2980
- <span class='object_link'><a href="Axlsx.html#validate_boolean-class_method" title="Axlsx.validate_boolean (method)">validate_boolean</a></span>
3284
+ <span class='object_link'><a href="Axlsx.html#validate_content_type-class_method" title="Axlsx.validate_content_type (method)">validate_content_type</a></span>
2981
3285
 
2982
3286
  <small>Axlsx</small>
2983
3287
 
@@ -2985,7 +3289,7 @@
2985
3289
 
2986
3290
 
2987
3291
  <li class="r1 ">
2988
- <span class='object_link'><a href="Axlsx.html#validate_content_type-class_method" title="Axlsx.validate_content_type (method)">validate_content_type</a></span>
3292
+ <span class='object_link'><a href="Axlsx.html#validate_float-class_method" title="Axlsx.validate_float (method)">validate_float</a></span>
2989
3293
 
2990
3294
  <small>Axlsx</small>
2991
3295
 
@@ -2993,7 +3297,7 @@
2993
3297
 
2994
3298
 
2995
3299
  <li class="r2 ">
2996
- <span class='object_link'><a href="Axlsx.html#validate_float-class_method" title="Axlsx.validate_float (method)">validate_float</a></span>
3300
+ <span class='object_link'><a href="Axlsx.html#validate_gradient_type-class_method" title="Axlsx.validate_gradient_type (method)">validate_gradient_type</a></span>
2997
3301
 
2998
3302
  <small>Axlsx</small>
2999
3303
 
@@ -3001,7 +3305,7 @@
3001
3305
 
3002
3306
 
3003
3307
  <li class="r1 ">
3004
- <span class='object_link'><a href="Axlsx.html#validate_gradient_type-class_method" title="Axlsx.validate_gradient_type (method)">validate_gradient_type</a></span>
3308
+ <span class='object_link'><a href="Axlsx.html#validate_horizontal_alignment-class_method" title="Axlsx.validate_horizontal_alignment (method)">validate_horizontal_alignment</a></span>
3005
3309
 
3006
3310
  <small>Axlsx</small>
3007
3311
 
@@ -3009,7 +3313,7 @@
3009
3313
 
3010
3314
 
3011
3315
  <li class="r2 ">
3012
- <span class='object_link'><a href="Axlsx.html#validate_horizontal_alignment-class_method" title="Axlsx.validate_horizontal_alignment (method)">validate_horizontal_alignment</a></span>
3316
+ <span class='object_link'><a href="Axlsx.html#validate_int-class_method" title="Axlsx.validate_int (method)">validate_int</a></span>
3013
3317
 
3014
3318
  <small>Axlsx</small>
3015
3319
 
@@ -3017,7 +3321,7 @@
3017
3321
 
3018
3322
 
3019
3323
  <li class="r1 ">
3020
- <span class='object_link'><a href="Axlsx.html#validate_int-class_method" title="Axlsx.validate_int (method)">validate_int</a></span>
3324
+ <span class='object_link'><a href="Axlsx.html#validate_pattern_type-class_method" title="Axlsx.validate_pattern_type (method)">validate_pattern_type</a></span>
3021
3325
 
3022
3326
  <small>Axlsx</small>
3023
3327
 
@@ -3025,7 +3329,7 @@
3025
3329
 
3026
3330
 
3027
3331
  <li class="r2 ">
3028
- <span class='object_link'><a href="Axlsx.html#validate_pattern_type-class_method" title="Axlsx.validate_pattern_type (method)">validate_pattern_type</a></span>
3332
+ <span class='object_link'><a href="Axlsx.html#validate_relationship_type-class_method" title="Axlsx.validate_relationship_type (method)">validate_relationship_type</a></span>
3029
3333
 
3030
3334
  <small>Axlsx</small>
3031
3335
 
@@ -3033,7 +3337,7 @@
3033
3337
 
3034
3338
 
3035
3339
  <li class="r1 ">
3036
- <span class='object_link'><a href="Axlsx.html#validate_relationship_type-class_method" title="Axlsx.validate_relationship_type (method)">validate_relationship_type</a></span>
3340
+ <span class='object_link'><a href="Axlsx.html#validate_string-class_method" title="Axlsx.validate_string (method)">validate_string</a></span>
3037
3341
 
3038
3342
  <small>Axlsx</small>
3039
3343
 
@@ -3041,7 +3345,7 @@
3041
3345
 
3042
3346
 
3043
3347
  <li class="r2 ">
3044
- <span class='object_link'><a href="Axlsx.html#validate_string-class_method" title="Axlsx.validate_string (method)">validate_string</a></span>
3348
+ <span class='object_link'><a href="Axlsx.html#validate_table_element_type-class_method" title="Axlsx.validate_table_element_type (method)">validate_table_element_type</a></span>
3045
3349
 
3046
3350
  <small>Axlsx</small>
3047
3351
 
@@ -3049,7 +3353,7 @@
3049
3353
 
3050
3354
 
3051
3355
  <li class="r1 ">
3052
- <span class='object_link'><a href="Axlsx.html#validate_table_element_type-class_method" title="Axlsx.validate_table_element_type (method)">validate_table_element_type</a></span>
3356
+ <span class='object_link'><a href="Axlsx.html#validate_unsigned_int-class_method" title="Axlsx.validate_unsigned_int (method)">validate_unsigned_int</a></span>
3053
3357
 
3054
3358
  <small>Axlsx</small>
3055
3359
 
@@ -3057,7 +3361,7 @@
3057
3361
 
3058
3362
 
3059
3363
  <li class="r2 ">
3060
- <span class='object_link'><a href="Axlsx.html#validate_unsigned_int-class_method" title="Axlsx.validate_unsigned_int (method)">validate_unsigned_int</a></span>
3364
+ <span class='object_link'><a href="Axlsx.html#validate_vertical_alignment-class_method" title="Axlsx.validate_vertical_alignment (method)">validate_vertical_alignment</a></span>
3061
3365
 
3062
3366
  <small>Axlsx</small>
3063
3367
 
@@ -3065,15 +3369,15 @@
3065
3369
 
3066
3370
 
3067
3371
  <li class="r1 ">
3068
- <span class='object_link'><a href="Axlsx.html#validate_vertical_alignment-class_method" title="Axlsx.validate_vertical_alignment (method)">validate_vertical_alignment</a></span>
3372
+ <span class='object_link'><a href="Axlsx/Cell.html#value-instance_method" title="Axlsx::Cell#value (method)">#value</a></span>
3069
3373
 
3070
- <small>Axlsx</small>
3374
+ <small>Axlsx::Cell</small>
3071
3375
 
3072
3376
  </li>
3073
3377
 
3074
3378
 
3075
3379
  <li class="r2 ">
3076
- <span class='object_link'><a href="Axlsx/Cell.html#value-instance_method" title="Axlsx::Cell#value (method)">#value</a></span>
3380
+ <span class='object_link'><a href="Axlsx/Cell.html#vertAlign-instance_method" title="Axlsx::Cell#vertAlign (method)">#vertAlign</a></span>
3077
3381
 
3078
3382
  <small>Axlsx::Cell</small>
3079
3383
 
@@ -3121,17 +3425,17 @@
3121
3425
 
3122
3426
 
3123
3427
  <li class="r2 ">
3124
- <span class='object_link'><a href="Axlsx/Worksheet.html#workbook-instance_method" title="Axlsx::Worksheet#workbook (method)">#workbook</a></span>
3428
+ <span class='object_link'><a href="Axlsx/Package.html#workbook-instance_method" title="Axlsx::Package#workbook (method)">#workbook</a></span>
3125
3429
 
3126
- <small>Axlsx::Worksheet</small>
3430
+ <small>Axlsx::Package</small>
3127
3431
 
3128
3432
  </li>
3129
3433
 
3130
3434
 
3131
3435
  <li class="r1 ">
3132
- <span class='object_link'><a href="Axlsx/Package.html#workbook-instance_method" title="Axlsx::Package#workbook (method)">#workbook</a></span>
3436
+ <span class='object_link'><a href="Axlsx/Worksheet.html#workbook-instance_method" title="Axlsx::Worksheet#workbook (method)">#workbook</a></span>
3133
3437
 
3134
- <small>Axlsx::Package</small>
3438
+ <small>Axlsx::Worksheet</small>
3135
3439
 
3136
3440
  </li>
3137
3441