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/Axlsx/Title.html CHANGED
@@ -94,8 +94,9 @@
94
94
 
95
95
  <h2>Overview</h2><div class="docstring">
96
96
  <div class="discussion">
97
-
98
- <p>A Title stores information about the title of a chart</p>
97
+ <p>
98
+ A Title stores information about the title of a chart
99
+ </p>
99
100
 
100
101
 
101
102
  </div>
@@ -131,8 +132,9 @@
131
132
 
132
133
 
133
134
 
134
- <span class="summary_desc"><div class='inline'>
135
- <p>The cell that holds the text for the title.</p>
135
+ <span class="summary_desc"><div class='inline'><p>
136
+ The cell that holds the text for the title.
137
+ </p>
136
138
  </div></span>
137
139
 
138
140
  </li>
@@ -157,8 +159,9 @@
157
159
 
158
160
 
159
161
 
160
- <span class="summary_desc"><div class='inline'>
161
- <p>The text to be shown.</p>
162
+ <span class="summary_desc"><div class='inline'><p>
163
+ The text to be shown.
164
+ </p>
162
165
  </div></span>
163
166
 
164
167
  </li>
@@ -195,8 +198,9 @@
195
198
 
196
199
 
197
200
 
198
- <span class="summary_desc"><div class='inline'>
199
- <p>Creates a new Title object.</p>
201
+ <span class="summary_desc"><div class='inline'><p>
202
+ Creates a new Title object.
203
+ </p>
200
204
  </div></span>
201
205
 
202
206
  </li>
@@ -218,8 +222,9 @@
218
222
 
219
223
 
220
224
 
221
- <span class="summary_desc"><div class='inline'>
222
- <p>Serializes the chart title.</p>
225
+ <span class="summary_desc"><div class='inline'><p>
226
+ Serializes the chart title.
227
+ </p>
223
228
  </div></span>
224
229
 
225
230
  </li>
@@ -240,8 +245,9 @@
240
245
 
241
246
  </p><div class="docstring">
242
247
  <div class="discussion">
243
-
244
- <p>Creates a new Title object</p>
248
+ <p>
249
+ Creates a new Title object
250
+ </p>
245
251
 
246
252
 
247
253
  </div>
@@ -262,8 +268,9 @@
262
268
 
263
269
 
264
270
  &mdash;
265
- <div class='inline'>
266
- <p>The cell or string to be used for the charts title</p>
271
+ <div class='inline'><p>
272
+ The cell or string to be used for the chart&#8217;s title
273
+ </p>
267
274
  </div>
268
275
 
269
276
  </li>
@@ -312,9 +319,10 @@
312
319
 
313
320
  </p><div class="docstring">
314
321
  <div class="discussion">
315
-
316
- <p>The cell that holds the text for the title. Setting this property will
317
- automatically update the text attribute.</p>
322
+ <p>
323
+ The cell that holds the text for the title. Setting this property will
324
+ automatically update the text attribute.
325
+ </p>
318
326
 
319
327
 
320
328
  </div>
@@ -369,9 +377,10 @@ automatically update the text attribute.</p>
369
377
 
370
378
  </p><div class="docstring">
371
379
  <div class="discussion">
372
-
373
- <p>The text to be shown. Setting this property directly with a string will
374
- remove the cell reference.</p>
380
+ <p>
381
+ The text to be shown. Setting this property directly with a string will
382
+ remove the cell reference.
383
+ </p>
375
384
 
376
385
 
377
386
  </div>
@@ -430,8 +439,9 @@ remove the cell reference.</p>
430
439
 
431
440
  </p><div class="docstring">
432
441
  <div class="discussion">
433
-
434
- <p>Serializes the chart title</p>
442
+ <p>
443
+ Serializes the chart title
444
+ </p>
435
445
 
436
446
 
437
447
  </div>
@@ -450,8 +460,9 @@ remove the cell reference.</p>
450
460
 
451
461
 
452
462
  &mdash;
453
- <div class='inline'>
454
- <p>The document builder instance this objects xml will be added to.</p>
463
+ <div class='inline'><p>
464
+ The document builder instance this objects xml will be added to.
465
+ </p>
455
466
  </div>
456
467
 
457
468
  </li>
@@ -523,7 +534,7 @@ remove the cell reference.</p>
523
534
  </div>
524
535
 
525
536
  <div id="footer">
526
- Generated on Wed Nov 30 08:53:48 2011 by
537
+ Generated on Mon Dec 5 14:21:18 2011 by
527
538
  <a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
528
539
  0.7.3 (ruby-1.8.7).
529
540
  </div>
@@ -97,14 +97,16 @@
97
97
 
98
98
  <div class="note notetag">
99
99
  <strong>Note:</strong>
100
- <div class='inline'>
101
- <p>The recommended way to manage drawings and charts is Worksheet#add_chart.
102
- Anchors are specified by the :start_at and :end_at options to that method.</p>
100
+ <div class='inline'><p>
101
+ The recommended way to manage drawings and charts is Worksheet#add_chart.
102
+ Anchors are specified by the :start_at and :end_at options to that method.
103
+ </p>
103
104
  </div>
104
105
  </div>
105
106
 
106
-
107
- <p>This class details the anchor points for drawings.</p>
107
+ <p>
108
+ This class details the anchor points for drawings.
109
+ </p>
108
110
 
109
111
 
110
112
  </div>
@@ -143,8 +145,9 @@ Anchors are specified by the :start_at and :end_at options to that method.</p>
143
145
 
144
146
 
145
147
 
146
- <span class="summary_desc"><div class='inline'>
147
- <p>The drawing that holds this anchor.</p>
148
+ <span class="summary_desc"><div class='inline'><p>
149
+ The drawing that holds this anchor.
150
+ </p>
148
151
  </div></span>
149
152
 
150
153
  </li>
@@ -169,8 +172,9 @@ Anchors are specified by the :start_at and :end_at options to that method.</p>
169
172
 
170
173
 
171
174
 
172
- <span class="summary_desc"><div class='inline'>
173
- <p>A marker that defines the from cell anchor.</p>
175
+ <span class="summary_desc"><div class='inline'><p>
176
+ A marker that defines the from cell anchor.
177
+ </p>
174
178
  </div></span>
175
179
 
176
180
  </li>
@@ -195,8 +199,9 @@ Anchors are specified by the :start_at and :end_at options to that method.</p>
195
199
 
196
200
 
197
201
 
198
- <span class="summary_desc"><div class='inline'>
199
- <p>The object this anchor hosts.</p>
202
+ <span class="summary_desc"><div class='inline'><p>
203
+ The object this anchor hosts.
204
+ </p>
200
205
  </div></span>
201
206
 
202
207
  </li>
@@ -221,8 +226,9 @@ Anchors are specified by the :start_at and :end_at options to that method.</p>
221
226
 
222
227
 
223
228
 
224
- <span class="summary_desc"><div class='inline'>
225
- <p>A marker that returns the to cell anchor.</p>
229
+ <span class="summary_desc"><div class='inline'><p>
230
+ A marker that returns the to cell anchor.
231
+ </p>
226
232
  </div></span>
227
233
 
228
234
  </li>
@@ -257,8 +263,9 @@ Anchors are specified by the :start_at and :end_at options to that method.</p>
257
263
 
258
264
 
259
265
 
260
- <span class="summary_desc"><div class='inline'>
261
- <p>Creates a graphic frame and chart object associated with this anchor.</p>
266
+ <span class="summary_desc"><div class='inline'><p>
267
+ Creates a graphic frame and chart object associated with this anchor.
268
+ </p>
262
269
  </div></span>
263
270
 
264
271
  </li>
@@ -280,8 +287,9 @@ Anchors are specified by the :start_at and :end_at options to that method.</p>
280
287
 
281
288
 
282
289
 
283
- <span class="summary_desc"><div class='inline'>
284
- <p>The index of this anchor in the drawing.</p>
290
+ <span class="summary_desc"><div class='inline'><p>
291
+ The index of this anchor in the drawing.
292
+ </p>
285
293
  </div></span>
286
294
 
287
295
  </li>
@@ -305,9 +313,10 @@ Anchors are specified by the :start_at and :end_at options to that method.</p>
305
313
 
306
314
 
307
315
 
308
- <span class="summary_desc"><div class='inline'>
309
- <p>Creates a new TwoCellAnchor object and sets up a reference to the from and
310
- to markers in the graphic_frames chart.</p>
316
+ <span class="summary_desc"><div class='inline'><p>
317
+ Creates a new TwoCellAnchor object and sets up a reference to the from and
318
+ to markers in the graphic_frame&#8217;s chart.
319
+ </p>
311
320
  </div></span>
312
321
 
313
322
  </li>
@@ -329,8 +338,9 @@ to markers in the graphic_frame’s chart.</p>
329
338
 
330
339
 
331
340
 
332
- <span class="summary_desc"><div class='inline'>
333
- <p>Serializes the two cell anchor.</p>
341
+ <span class="summary_desc"><div class='inline'><p>
342
+ Serializes the two cell anchor.
343
+ </p>
334
344
  </div></span>
335
345
 
336
346
  </li>
@@ -354,15 +364,17 @@ to markers in the graphic_frame’s chart.</p>
354
364
 
355
365
  <div class="note notetag">
356
366
  <strong>Note:</strong>
357
- <div class='inline'>
358
- <p>the chart_type parameter will be replaced with object in v. 2.0.0</p>
367
+ <div class='inline'><p>
368
+ the chart_type parameter will be replaced with object in v. 2.0.0
369
+ </p>
359
370
  </div>
360
371
  </div>
361
372
 
362
-
363
- <p>Creates a new TwoCellAnchor object and sets up a reference to the from and
364
- to markers in the graphic_frames chart. That means that you can do
365
- stuff like c = worksheet.add_chart Axlsx::Chart c.start_at 5, 9</p>
373
+ <p>
374
+ Creates a new TwoCellAnchor object and sets up a reference to the from and
375
+ to markers in the graphic_frame&#8217;s chart. That means that you can do
376
+ stuff like c = worksheet.add_chart Axlsx::Chart c.start_at 5, 9
377
+ </p>
366
378
 
367
379
 
368
380
  </div>
@@ -392,9 +404,10 @@ stuff like c = worksheet.add_chart Axlsx::Chart c.start_at 5, 9</p>
392
404
 
393
405
 
394
406
  &mdash;
395
- <div class='inline'>
396
- <p>This is passed to the graphic frame for instantiation. must be Chart or a
397
- subclass of Chart</p>
407
+ <div class='inline'><p>
408
+ This is passed to the graphic frame for instantiation. must be Chart or a
409
+ subclass of Chart
410
+ </p>
398
411
  </div>
399
412
 
400
413
  </li>
@@ -409,8 +422,9 @@ subclass of Chart</p>
409
422
 
410
423
 
411
424
  &mdash;
412
- <div class='inline'>
413
- <p>The object this anchor holds.</p>
425
+ <div class='inline'><p>
426
+ The object this anchor holds.
427
+ </p>
414
428
  </div>
415
429
 
416
430
  </li>
@@ -427,8 +441,9 @@ subclass of Chart</p>
427
441
 
428
442
 
429
443
  &mdash;
430
- <div class='inline'>
431
- <p>a customizable set of options</p>
444
+ <div class='inline'><p>
445
+ a customizable set of options
446
+ </p>
432
447
  </div>
433
448
 
434
449
  </li>
@@ -449,8 +464,9 @@ subclass of Chart</p>
449
464
  <span class="default">
450
465
 
451
466
  </span>
452
- &mdash; <div class='inline'>
453
- <p>the col, row to start at</p>
467
+ &mdash; <div class='inline'><p>
468
+ the col, row to start at
469
+ </p>
454
470
  </div>
455
471
  </li>
456
472
 
@@ -460,8 +476,9 @@ subclass of Chart</p>
460
476
  <span class="default">
461
477
 
462
478
  </span>
463
- &mdash; <div class='inline'>
464
- <p>the col, row to end at</p>
479
+ &mdash; <div class='inline'><p>
480
+ the col, row to end at
481
+ </p>
465
482
  </div>
466
483
  </li>
467
484
 
@@ -512,8 +529,9 @@ subclass of Chart</p>
512
529
 
513
530
  </p><div class="docstring">
514
531
  <div class="discussion">
515
-
516
- <p>The drawing that holds this anchor</p>
532
+ <p>
533
+ The drawing that holds this anchor
534
+ </p>
517
535
 
518
536
 
519
537
  </div>
@@ -568,9 +586,10 @@ subclass of Chart</p>
568
586
 
569
587
  </p><div class="docstring">
570
588
  <div class="discussion">
571
-
572
- <p>A marker that defines the from cell anchor. The default from column and row
573
- are 0 and 0 respectively</p>
589
+ <p>
590
+ A marker that defines the from cell anchor. The default from column and row
591
+ are 0 and 0 respectively
592
+ </p>
574
593
 
575
594
 
576
595
  </div>
@@ -625,8 +644,9 @@ are 0 and 0 respectively</p>
625
644
 
626
645
  </p><div class="docstring">
627
646
  <div class="discussion">
628
-
629
- <p>The object this anchor hosts</p>
647
+ <p>
648
+ The object this anchor hosts
649
+ </p>
630
650
 
631
651
 
632
652
  </div>
@@ -681,9 +701,10 @@ are 0 and 0 respectively</p>
681
701
 
682
702
  </p><div class="docstring">
683
703
  <div class="discussion">
684
-
685
- <p>A marker that returns the to cell anchor. The default to column and row are
686
- 5 and 10 respectively</p>
704
+ <p>
705
+ A marker that returns the to cell anchor. The default to column and row are
706
+ 5 and 10 respectively
707
+ </p>
687
708
 
688
709
 
689
710
  </div>
@@ -742,8 +763,9 @@ are 0 and 0 respectively</p>
742
763
 
743
764
  </p><div class="docstring">
744
765
  <div class="discussion">
745
-
746
- <p>Creates a graphic frame and chart object associated with this anchor</p>
766
+ <p>
767
+ Creates a graphic frame and chart object associated with this anchor
768
+ </p>
747
769
 
748
770
 
749
771
  </div>
@@ -797,8 +819,9 @@ are 0 and 0 respectively</p>
797
819
 
798
820
  </p><div class="docstring">
799
821
  <div class="discussion">
800
-
801
- <p>The index of this anchor in the drawing</p>
822
+ <p>
823
+ The index of this anchor in the drawing
824
+ </p>
802
825
 
803
826
 
804
827
  </div>
@@ -850,8 +873,9 @@ are 0 and 0 respectively</p>
850
873
 
851
874
  </p><div class="docstring">
852
875
  <div class="discussion">
853
-
854
- <p>Serializes the two cell anchor</p>
876
+ <p>
877
+ Serializes the two cell anchor
878
+ </p>
855
879
 
856
880
 
857
881
  </div>
@@ -870,8 +894,9 @@ are 0 and 0 respectively</p>
870
894
 
871
895
 
872
896
  &mdash;
873
- <div class='inline'>
874
- <p>The document builder instance this objects xml will be added to.</p>
897
+ <div class='inline'><p>
898
+ The document builder instance this objects xml will be added to.
899
+ </p>
875
900
  </div>
876
901
 
877
902
  </li>
@@ -939,7 +964,7 @@ are 0 and 0 respectively</p>
939
964
  </div>
940
965
 
941
966
  <div id="footer">
942
- Generated on Wed Nov 30 08:53:39 2011 by
967
+ Generated on Mon Dec 5 14:21:13 2011 by
943
968
  <a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
944
969
  0.7.3 (ruby-1.8.7).
945
970
  </div>
@@ -96,8 +96,9 @@
96
96
 
97
97
  <h2>Overview</h2><div class="docstring">
98
98
  <div class="discussion">
99
-
100
- <p>the ValAxis class defines a chart value axis.</p>
99
+ <p>
100
+ the ValAxis class defines a chart value axis.
101
+ </p>
101
102
 
102
103
 
103
104
  </div>
@@ -133,8 +134,9 @@
133
134
 
134
135
 
135
136
 
136
- <span class="summary_desc"><div class='inline'>
137
- <p>This element specifies how the value axis crosses the category axis.</p>
137
+ <span class="summary_desc"><div class='inline'><p>
138
+ This element specifies how the value axis crosses the category axis.
139
+ </p>
138
140
  </div></span>
139
141
 
140
142
  </li>
@@ -179,8 +181,9 @@
179
181
 
180
182
 
181
183
 
182
- <span class="summary_desc"><div class='inline'>
183
- <p>Creates a new ValAxis object.</p>
184
+ <span class="summary_desc"><div class='inline'><p>
185
+ Creates a new ValAxis object.
186
+ </p>
184
187
  </div></span>
185
188
 
186
189
  </li>
@@ -202,8 +205,9 @@
202
205
 
203
206
 
204
207
 
205
- <span class="summary_desc"><div class='inline'>
206
- <p>Serializes the value axis.</p>
208
+ <span class="summary_desc"><div class='inline'><p>
209
+ Serializes the value axis.
210
+ </p>
207
211
  </div></span>
208
212
 
209
213
  </li>
@@ -229,8 +233,9 @@
229
233
 
230
234
  </p><div class="docstring">
231
235
  <div class="discussion">
232
-
233
- <p>Creates a new ValAxis object</p>
236
+ <p>
237
+ Creates a new ValAxis object
238
+ </p>
234
239
 
235
240
 
236
241
  </div>
@@ -249,8 +254,9 @@
249
254
 
250
255
 
251
256
  &mdash;
252
- <div class='inline'>
253
- <p>the id of this axis</p>
257
+ <div class='inline'><p>
258
+ the id of this axis
259
+ </p>
254
260
  </div>
255
261
 
256
262
  </li>
@@ -265,8 +271,9 @@
265
271
 
266
272
 
267
273
  &mdash;
268
- <div class='inline'>
269
- <p>the id of the perpendicular axis</p>
274
+ <div class='inline'><p>
275
+ the id of the perpendicular axis
276
+ </p>
270
277
  </div>
271
278
 
272
279
  </li>
@@ -283,8 +290,9 @@
283
290
 
284
291
 
285
292
  &mdash;
286
- <div class='inline'>
287
- <p>a customizable set of options</p>
293
+ <div class='inline'><p>
294
+ a customizable set of options
295
+ </p>
288
296
  </div>
289
297
 
290
298
  </li>
@@ -382,9 +390,10 @@
382
390
 
383
391
  </p><div class="docstring">
384
392
  <div class="discussion">
385
-
386
- <p>This element specifies how the value axis crosses the category axis. must
387
- be one of [:between, :midCat]</p>
393
+ <p>
394
+ This element specifies how the value axis crosses the category axis. must
395
+ be one of [:between, :midCat]
396
+ </p>
388
397
 
389
398
 
390
399
  </div>
@@ -443,8 +452,9 @@ be one of [:between, :midCat]</p>
443
452
 
444
453
  </p><div class="docstring">
445
454
  <div class="discussion">
446
-
447
- <p>Serializes the value axis</p>
455
+ <p>
456
+ Serializes the value axis
457
+ </p>
448
458
 
449
459
 
450
460
  </div>
@@ -463,8 +473,9 @@ be one of [:between, :midCat]</p>
463
473
 
464
474
 
465
475
  &mdash;
466
- <div class='inline'>
467
- <p>The document builder instance this objects xml will be added to.</p>
476
+ <div class='inline'><p>
477
+ The document builder instance this objects xml will be added to.
478
+ </p>
468
479
  </div>
469
480
 
470
481
  </li>
@@ -518,7 +529,7 @@ be one of [:between, :midCat]</p>
518
529
  </div>
519
530
 
520
531
  <div id="footer">
521
- Generated on Wed Nov 30 08:53:37 2011 by
532
+ Generated on Mon Dec 5 14:21:08 2011 by
522
533
  <a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
523
534
  0.7.3 (ruby-1.8.7).
524
535
  </div>