write_xlsx 1.09.5 → 1.10.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.rubocop.yml +6 -1
- data/Changes +8 -0
- data/LICENSE.txt +1 -1
- data/README.md +1 -1
- data/examples/autofilter.rb +39 -10
- data/examples/chart_area.rb +12 -12
- data/examples/chart_bar.rb +12 -12
- data/examples/chart_clustered.rb +12 -12
- data/examples/chart_column.rb +12 -12
- data/examples/chart_combined.rb +25 -25
- data/examples/chart_data_labels.rb +99 -99
- data/examples/chart_data_table.rb +25 -25
- data/examples/chart_data_tools.rb +50 -50
- data/examples/chart_doughnut.rb +29 -29
- data/examples/chart_gauge.rb +18 -18
- data/examples/chart_line.rb +32 -32
- data/examples/chart_pareto.rb +16 -16
- data/examples/chart_pie.rb +17 -17
- data/examples/chart_radar.rb +38 -38
- data/examples/chart_scatter.rb +12 -12
- data/examples/chart_secondary_axis.rb +13 -13
- data/examples/chart_stock.rb +12 -12
- data/examples/chart_styles.rb +5 -5
- data/examples/colors.rb +11 -11
- data/examples/comments2.rb +15 -15
- data/examples/conditional_format.rb +74 -74
- data/examples/data_validate.rb +64 -64
- data/examples/date_time.rb +3 -3
- data/examples/demo.rb +14 -14
- data/examples/diag_border.rb +6 -6
- data/examples/dynamic_arrays.rb +247 -0
- data/examples/formats.rb +10 -10
- data/examples/hyperlink1.rb +4 -4
- data/examples/ignore_errors.rb +2 -2
- data/examples/indent.rb +2 -2
- data/examples/lambda.rb +43 -0
- data/examples/macros.rb +4 -4
- data/examples/merge1.rb +1 -1
- data/examples/merge2.rb +9 -9
- data/examples/merge3.rb +5 -5
- data/examples/merge4.rb +20 -20
- data/examples/merge5.rb +18 -18
- data/examples/merge6.rb +7 -7
- data/examples/outline.rb +1 -1
- data/examples/outline_collapsed.rb +1 -1
- data/examples/panes.rb +4 -4
- data/examples/properties.rb +9 -9
- data/examples/protection.rb +2 -2
- data/examples/rich_strings.rb +6 -6
- data/examples/shape1.rb +7 -7
- data/examples/shape2.rb +16 -16
- data/examples/shape3.rb +5 -5
- data/examples/shape4.rb +7 -7
- data/examples/shape5.rb +7 -7
- data/examples/shape6.rb +7 -7
- data/examples/shape7.rb +10 -10
- data/examples/shape8.rb +10 -10
- data/examples/shape_all.rb +4 -4
- data/examples/sparklines1.rb +11 -11
- data/examples/sparklines2.rb +76 -76
- data/examples/tables.rb +87 -87
- data/examples/watermark.png +0 -0
- data/examples/watermark.rb +26 -0
- data/lib/write_xlsx/chart/bar.rb +4 -4
- data/lib/write_xlsx/chart/line.rb +1 -1
- data/lib/write_xlsx/chart/radar.rb +2 -2
- data/lib/write_xlsx/chart/scatter.rb +4 -4
- data/lib/write_xlsx/chart/series.rb +27 -27
- data/lib/write_xlsx/chart/stock.rb +5 -5
- data/lib/write_xlsx/chart.rb +31 -30
- data/lib/write_xlsx/chartsheet.rb +1 -0
- data/lib/write_xlsx/col_name.rb +1 -0
- data/lib/write_xlsx/colors.rb +20 -19
- data/lib/write_xlsx/compatibility.rb +1 -0
- data/lib/write_xlsx/drawing.rb +20 -10
- data/lib/write_xlsx/format.rb +5 -0
- data/lib/write_xlsx/formats.rb +1 -0
- data/lib/write_xlsx/gradient.rb +2 -0
- data/lib/write_xlsx/package/app.rb +1 -0
- data/lib/write_xlsx/package/button.rb +6 -2
- data/lib/write_xlsx/package/comments.rb +3 -1
- data/lib/write_xlsx/package/conditional_format.rb +4 -3
- data/lib/write_xlsx/package/content_types.rb +1 -0
- data/lib/write_xlsx/package/core.rb +1 -0
- data/lib/write_xlsx/package/custom.rb +1 -0
- data/lib/write_xlsx/package/metadata.rb +1 -0
- data/lib/write_xlsx/package/packager.rb +1 -0
- data/lib/write_xlsx/package/relationships.rb +1 -0
- data/lib/write_xlsx/package/shared_strings.rb +1 -1
- data/lib/write_xlsx/package/styles.rb +1 -0
- data/lib/write_xlsx/package/table.rb +9 -8
- data/lib/write_xlsx/package/theme.rb +1 -0
- data/lib/write_xlsx/package/vml.rb +1 -0
- data/lib/write_xlsx/package/xml_writer_simple.rb +21 -2
- data/lib/write_xlsx/shape.rb +6 -5
- data/lib/write_xlsx/sheets.rb +2 -1
- data/lib/write_xlsx/sparkline.rb +287 -286
- data/lib/write_xlsx/utility.rb +25 -26
- data/lib/write_xlsx/version.rb +3 -1
- data/lib/write_xlsx/workbook.rb +20 -20
- data/lib/write_xlsx/worksheet/cell_data.rb +53 -63
- data/lib/write_xlsx/worksheet/data_validation.rb +1 -0
- data/lib/write_xlsx/worksheet/hyperlink.rb +3 -2
- data/lib/write_xlsx/worksheet/page_setup.rb +1 -0
- data/lib/write_xlsx/worksheet.rb +287 -74
- data/lib/write_xlsx/zip_file_utils.rb +1 -0
- data/lib/write_xlsx.rb +1 -0
- data/write_xlsx.gemspec +1 -0
- metadata +8 -4
data/lib/write_xlsx/sparkline.rb
CHANGED
@@ -1,4 +1,5 @@
|
|
1
1
|
# -*- coding: utf-8 -*-
|
2
|
+
# frozen_string_literal: true
|
2
3
|
|
3
4
|
require 'write_xlsx/utility'
|
4
5
|
|
@@ -194,7 +195,7 @@ module Writexlsx
|
|
194
195
|
# Write the <x14:colorAxis> element.
|
195
196
|
#
|
196
197
|
def write_color_axis # :nodoc:
|
197
|
-
write_spark_color('x14:colorAxis', { :
|
198
|
+
write_spark_color('x14:colorAxis', { _rgb: 'FF000000' })
|
198
199
|
end
|
199
200
|
|
200
201
|
#
|
@@ -273,7 +274,7 @@ module Writexlsx
|
|
273
274
|
def set_spark_color(user_color, palette_color)
|
274
275
|
return unless palette_color
|
275
276
|
|
276
|
-
instance_variable_set("@#{user_color}", { :
|
277
|
+
instance_variable_set("@#{user_color}", { _rgb: palette_color })
|
277
278
|
end
|
278
279
|
|
279
280
|
def cust_max_min(max_min) # :nodoc:
|
@@ -282,368 +283,368 @@ module Writexlsx
|
|
282
283
|
|
283
284
|
def valid_sparkline_parameter # :nodoc:
|
284
285
|
{
|
285
|
-
:
|
286
|
-
:
|
287
|
-
:
|
288
|
-
:
|
289
|
-
:
|
290
|
-
:
|
291
|
-
:
|
292
|
-
:
|
293
|
-
:
|
294
|
-
:
|
295
|
-
:
|
296
|
-
:
|
297
|
-
:
|
298
|
-
:
|
299
|
-
:
|
300
|
-
:
|
301
|
-
:
|
302
|
-
:
|
303
|
-
:
|
304
|
-
:
|
305
|
-
:
|
306
|
-
:
|
307
|
-
:
|
308
|
-
:
|
309
|
-
:
|
286
|
+
location: 1,
|
287
|
+
range: 1,
|
288
|
+
type: 1,
|
289
|
+
high_point: 1,
|
290
|
+
low_point: 1,
|
291
|
+
negative_points: 1,
|
292
|
+
first_point: 1,
|
293
|
+
last_point: 1,
|
294
|
+
markers: 1,
|
295
|
+
style: 1,
|
296
|
+
series_color: 1,
|
297
|
+
negative_color: 1,
|
298
|
+
markers_color: 1,
|
299
|
+
first_color: 1,
|
300
|
+
last_color: 1,
|
301
|
+
high_color: 1,
|
302
|
+
low_color: 1,
|
303
|
+
max: 1,
|
304
|
+
min: 1,
|
305
|
+
axis: 1,
|
306
|
+
reverse: 1,
|
307
|
+
empty_cells: 1,
|
308
|
+
show_hidden: 1,
|
309
|
+
date_axis: 1,
|
310
|
+
weight: 1
|
310
311
|
}
|
311
312
|
end
|
312
313
|
|
313
314
|
def spark_styles # :nodoc:
|
314
315
|
[
|
315
316
|
{ # 0
|
316
|
-
:
|
317
|
-
:
|
318
|
-
:
|
319
|
-
:
|
320
|
-
:
|
321
|
-
:
|
322
|
-
:
|
317
|
+
series: { _theme: "4", _tint: "-0.499984740745262" },
|
318
|
+
negative: { _theme: "5" },
|
319
|
+
markers: { _theme: "4", _tint: "-0.499984740745262" },
|
320
|
+
first: { _theme: "4", _tint: "0.39997558519241921" },
|
321
|
+
last: { _theme: "4", _tint: "0.39997558519241921" },
|
322
|
+
high: { _theme: "4" },
|
323
|
+
low: { _theme: "4" }
|
323
324
|
},
|
324
325
|
{ # 1
|
325
|
-
:
|
326
|
-
:
|
327
|
-
:
|
328
|
-
:
|
329
|
-
:
|
330
|
-
:
|
331
|
-
:
|
326
|
+
series: { _theme: "4", _tint: "-0.499984740745262" },
|
327
|
+
negative: { _theme: "5" },
|
328
|
+
markers: { _theme: "4", _tint: "-0.499984740745262" },
|
329
|
+
first: { _theme: "4", _tint: "0.39997558519241921" },
|
330
|
+
last: { _theme: "4", _tint: "0.39997558519241921" },
|
331
|
+
high: { _theme: "4" },
|
332
|
+
low: { _theme: "4" }
|
332
333
|
},
|
333
334
|
{ # 2
|
334
|
-
:
|
335
|
-
:
|
336
|
-
:
|
337
|
-
:
|
338
|
-
:
|
339
|
-
:
|
340
|
-
:
|
335
|
+
series: { _theme: "5", _tint: "-0.499984740745262" },
|
336
|
+
negative: { _theme: "6" },
|
337
|
+
markers: { _theme: "5", _tint: "-0.499984740745262" },
|
338
|
+
first: { _theme: "5", _tint: "0.39997558519241921" },
|
339
|
+
last: { _theme: "5", _tint: "0.39997558519241921" },
|
340
|
+
high: { _theme: "5" },
|
341
|
+
low: { _theme: "5" }
|
341
342
|
},
|
342
343
|
{ # 3
|
343
|
-
:
|
344
|
-
:
|
345
|
-
:
|
346
|
-
:
|
347
|
-
:
|
348
|
-
:
|
349
|
-
:
|
344
|
+
series: { _theme: "6", _tint: "-0.499984740745262" },
|
345
|
+
negative: { _theme: "7" },
|
346
|
+
markers: { _theme: "6", _tint: "-0.499984740745262" },
|
347
|
+
first: { _theme: "6", _tint: "0.39997558519241921" },
|
348
|
+
last: { _theme: "6", _tint: "0.39997558519241921" },
|
349
|
+
high: { _theme: "6" },
|
350
|
+
low: { _theme: "6" }
|
350
351
|
},
|
351
352
|
{ # 4
|
352
|
-
:
|
353
|
-
:
|
354
|
-
:
|
355
|
-
:
|
356
|
-
:
|
357
|
-
:
|
358
|
-
:
|
353
|
+
series: { _theme: "7", _tint: "-0.499984740745262" },
|
354
|
+
negative: { _theme: "8" },
|
355
|
+
markers: { _theme: "7", _tint: "-0.499984740745262" },
|
356
|
+
first: { _theme: "7", _tint: "0.39997558519241921" },
|
357
|
+
last: { _theme: "7", _tint: "0.39997558519241921" },
|
358
|
+
high: { _theme: "7" },
|
359
|
+
low: { _theme: "7" }
|
359
360
|
},
|
360
361
|
{ # 5
|
361
|
-
:
|
362
|
-
:
|
363
|
-
:
|
364
|
-
:
|
365
|
-
:
|
366
|
-
:
|
367
|
-
:
|
362
|
+
series: { _theme: "8", _tint: "-0.499984740745262" },
|
363
|
+
negative: { _theme: "9" },
|
364
|
+
markers: { _theme: "8", _tint: "-0.499984740745262" },
|
365
|
+
first: { _theme: "8", _tint: "0.39997558519241921" },
|
366
|
+
last: { _theme: "8", _tint: "0.39997558519241921" },
|
367
|
+
high: { _theme: "8" },
|
368
|
+
low: { _theme: "8" }
|
368
369
|
},
|
369
370
|
{ # 6
|
370
|
-
:
|
371
|
-
:
|
372
|
-
:
|
373
|
-
:
|
374
|
-
:
|
375
|
-
:
|
376
|
-
:
|
371
|
+
series: { _theme: "9", _tint: "-0.499984740745262" },
|
372
|
+
negative: { _theme: "4" },
|
373
|
+
markers: { _theme: "9", _tint: "-0.499984740745262" },
|
374
|
+
first: { _theme: "9", _tint: "0.39997558519241921" },
|
375
|
+
last: { _theme: "9", _tint: "0.39997558519241921" },
|
376
|
+
high: { _theme: "9" },
|
377
|
+
low: { _theme: "9" }
|
377
378
|
},
|
378
379
|
{ # 7
|
379
|
-
:
|
380
|
-
:
|
381
|
-
:
|
382
|
-
:
|
383
|
-
:
|
384
|
-
:
|
385
|
-
:
|
380
|
+
series: { _theme: "4", _tint: "-0.249977111117893" },
|
381
|
+
negative: { _theme: "5" },
|
382
|
+
markers: { _theme: "5", _tint: "-0.249977111117893" },
|
383
|
+
first: { _theme: "5", _tint: "-0.249977111117893" },
|
384
|
+
last: { _theme: "5", _tint: "-0.249977111117893" },
|
385
|
+
high: { _theme: "5", _tint: "-0.249977111117893" },
|
386
|
+
low: { _theme: "5", _tint: "-0.249977111117893" }
|
386
387
|
},
|
387
388
|
{ # 8
|
388
|
-
:
|
389
|
-
:
|
390
|
-
:
|
391
|
-
:
|
392
|
-
:
|
393
|
-
:
|
394
|
-
:
|
389
|
+
series: { _theme: "5", _tint: "-0.249977111117893" },
|
390
|
+
negative: { _theme: "6" },
|
391
|
+
markers: { _theme: "6", _tint: "-0.249977111117893" },
|
392
|
+
first: { _theme: "6", _tint: "-0.249977111117893" },
|
393
|
+
last: { _theme: "6", _tint: "-0.249977111117893" },
|
394
|
+
high: { _theme: "6", _tint: "-0.249977111117893" },
|
395
|
+
low: { _theme: "6", _tint: "-0.249977111117893" }
|
395
396
|
},
|
396
397
|
{ # 9
|
397
|
-
:
|
398
|
-
:
|
399
|
-
:
|
400
|
-
:
|
401
|
-
:
|
402
|
-
:
|
403
|
-
:
|
398
|
+
series: { _theme: "6", _tint: "-0.249977111117893" },
|
399
|
+
negative: { _theme: "7" },
|
400
|
+
markers: { _theme: "7", _tint: "-0.249977111117893" },
|
401
|
+
first: { _theme: "7", _tint: "-0.249977111117893" },
|
402
|
+
last: { _theme: "7", _tint: "-0.249977111117893" },
|
403
|
+
high: { _theme: "7", _tint: "-0.249977111117893" },
|
404
|
+
low: { _theme: "7", _tint: "-0.249977111117893" }
|
404
405
|
},
|
405
406
|
{ # 10
|
406
|
-
:
|
407
|
-
:
|
408
|
-
:
|
409
|
-
:
|
410
|
-
:
|
411
|
-
:
|
412
|
-
:
|
407
|
+
series: { _theme: "7", _tint: "-0.249977111117893" },
|
408
|
+
negative: { _theme: "8" },
|
409
|
+
markers: { _theme: "8", _tint: "-0.249977111117893" },
|
410
|
+
first: { _theme: "8", _tint: "-0.249977111117893" },
|
411
|
+
last: { _theme: "8", _tint: "-0.249977111117893" },
|
412
|
+
high: { _theme: "8", _tint: "-0.249977111117893" },
|
413
|
+
low: { _theme: "8", _tint: "-0.249977111117893" }
|
413
414
|
},
|
414
415
|
{ # 11
|
415
|
-
:
|
416
|
-
:
|
417
|
-
:
|
418
|
-
:
|
419
|
-
:
|
420
|
-
:
|
421
|
-
:
|
416
|
+
series: { _theme: "8", _tint: "-0.249977111117893" },
|
417
|
+
negative: { _theme: "9" },
|
418
|
+
markers: { _theme: "9", _tint: "-0.249977111117893" },
|
419
|
+
first: { _theme: "9", _tint: "-0.249977111117893" },
|
420
|
+
last: { _theme: "9", _tint: "-0.249977111117893" },
|
421
|
+
high: { _theme: "9", _tint: "-0.249977111117893" },
|
422
|
+
low: { _theme: "9", _tint: "-0.249977111117893" }
|
422
423
|
},
|
423
424
|
{ # 12
|
424
|
-
:
|
425
|
-
:
|
426
|
-
:
|
427
|
-
:
|
428
|
-
:
|
429
|
-
:
|
430
|
-
:
|
425
|
+
series: { _theme: "9", _tint: "-0.249977111117893" },
|
426
|
+
negative: { _theme: "4" },
|
427
|
+
markers: { _theme: "4", _tint: "-0.249977111117893" },
|
428
|
+
first: { _theme: "4", _tint: "-0.249977111117893" },
|
429
|
+
last: { _theme: "4", _tint: "-0.249977111117893" },
|
430
|
+
high: { _theme: "4", _tint: "-0.249977111117893" },
|
431
|
+
low: { _theme: "4", _tint: "-0.249977111117893" }
|
431
432
|
},
|
432
433
|
{ # 13
|
433
|
-
:
|
434
|
-
:
|
435
|
-
:
|
436
|
-
:
|
437
|
-
:
|
438
|
-
:
|
439
|
-
:
|
434
|
+
series: { _theme: "4" },
|
435
|
+
negative: { _theme: "5" },
|
436
|
+
markers: { _theme: "4", _tint: "-0.249977111117893" },
|
437
|
+
first: { _theme: "4", _tint: "-0.249977111117893" },
|
438
|
+
last: { _theme: "4", _tint: "-0.249977111117893" },
|
439
|
+
high: { _theme: "4", _tint: "-0.249977111117893" },
|
440
|
+
low: { _theme: "4", _tint: "-0.249977111117893" }
|
440
441
|
},
|
441
442
|
{ # 14
|
442
|
-
:
|
443
|
-
:
|
444
|
-
:
|
445
|
-
:
|
446
|
-
:
|
447
|
-
:
|
448
|
-
:
|
443
|
+
series: { _theme: "5" },
|
444
|
+
negative: { _theme: "6" },
|
445
|
+
markers: { _theme: "5", _tint: "-0.249977111117893" },
|
446
|
+
first: { _theme: "5", _tint: "-0.249977111117893" },
|
447
|
+
last: { _theme: "5", _tint: "-0.249977111117893" },
|
448
|
+
high: { _theme: "5", _tint: "-0.249977111117893" },
|
449
|
+
low: { _theme: "5", _tint: "-0.249977111117893" }
|
449
450
|
},
|
450
451
|
{ # 15
|
451
|
-
:
|
452
|
-
:
|
453
|
-
:
|
454
|
-
:
|
455
|
-
:
|
456
|
-
:
|
457
|
-
:
|
452
|
+
series: { _theme: "6" },
|
453
|
+
negative: { _theme: "7" },
|
454
|
+
markers: { _theme: "6", _tint: "-0.249977111117893" },
|
455
|
+
first: { _theme: "6", _tint: "-0.249977111117893" },
|
456
|
+
last: { _theme: "6", _tint: "-0.249977111117893" },
|
457
|
+
high: { _theme: "6", _tint: "-0.249977111117893" },
|
458
|
+
low: { _theme: "6", _tint: "-0.249977111117893" }
|
458
459
|
},
|
459
460
|
{ # 16
|
460
|
-
:
|
461
|
-
:
|
462
|
-
:
|
463
|
-
:
|
464
|
-
:
|
465
|
-
:
|
466
|
-
:
|
461
|
+
series: { _theme: "7" },
|
462
|
+
negative: { _theme: "8" },
|
463
|
+
markers: { _theme: "7", _tint: "-0.249977111117893" },
|
464
|
+
first: { _theme: "7", _tint: "-0.249977111117893" },
|
465
|
+
last: { _theme: "7", _tint: "-0.249977111117893" },
|
466
|
+
high: { _theme: "7", _tint: "-0.249977111117893" },
|
467
|
+
low: { _theme: "7", _tint: "-0.249977111117893" }
|
467
468
|
},
|
468
469
|
{ # 17
|
469
|
-
:
|
470
|
-
:
|
471
|
-
:
|
472
|
-
:
|
473
|
-
:
|
474
|
-
:
|
475
|
-
:
|
470
|
+
series: { _theme: "8" },
|
471
|
+
negative: { _theme: "9" },
|
472
|
+
markers: { _theme: "8", _tint: "-0.249977111117893" },
|
473
|
+
first: { _theme: "8", _tint: "-0.249977111117893" },
|
474
|
+
last: { _theme: "8", _tint: "-0.249977111117893" },
|
475
|
+
high: { _theme: "8", _tint: "-0.249977111117893" },
|
476
|
+
low: { _theme: "8", _tint: "-0.249977111117893" }
|
476
477
|
},
|
477
478
|
{ # 18
|
478
|
-
:
|
479
|
-
:
|
480
|
-
:
|
481
|
-
:
|
482
|
-
:
|
483
|
-
:
|
484
|
-
:
|
479
|
+
series: { _theme: "9" },
|
480
|
+
negative: { _theme: "4" },
|
481
|
+
markers: { _theme: "9", _tint: "-0.249977111117893" },
|
482
|
+
first: { _theme: "9", _tint: "-0.249977111117893" },
|
483
|
+
last: { _theme: "9", _tint: "-0.249977111117893" },
|
484
|
+
high: { _theme: "9", _tint: "-0.249977111117893" },
|
485
|
+
low: { _theme: "9", _tint: "-0.249977111117893" }
|
485
486
|
},
|
486
487
|
{ # 19
|
487
|
-
:
|
488
|
-
:
|
489
|
-
:
|
490
|
-
:
|
491
|
-
:
|
492
|
-
:
|
493
|
-
:
|
488
|
+
series: { _theme: "4", _tint: "0.39997558519241921" },
|
489
|
+
negative: { _theme: "0", _tint: "-0.499984740745262" },
|
490
|
+
markers: { _theme: "4", _tint: "0.79998168889431442" },
|
491
|
+
first: { _theme: "4", _tint: "-0.249977111117893" },
|
492
|
+
last: { _theme: "4", _tint: "-0.249977111117893" },
|
493
|
+
high: { _theme: "4", _tint: "-0.499984740745262" },
|
494
|
+
low: { _theme: "4", _tint: "-0.499984740745262" }
|
494
495
|
},
|
495
496
|
{ # 20
|
496
|
-
:
|
497
|
-
:
|
498
|
-
:
|
499
|
-
:
|
500
|
-
:
|
501
|
-
:
|
502
|
-
:
|
497
|
+
series: { _theme: "5", _tint: "0.39997558519241921" },
|
498
|
+
negative: { _theme: "0", _tint: "-0.499984740745262" },
|
499
|
+
markers: { _theme: "5", _tint: "0.79998168889431442" },
|
500
|
+
first: { _theme: "5", _tint: "-0.249977111117893" },
|
501
|
+
last: { _theme: "5", _tint: "-0.249977111117893" },
|
502
|
+
high: { _theme: "5", _tint: "-0.499984740745262" },
|
503
|
+
low: { _theme: "5", _tint: "-0.499984740745262" }
|
503
504
|
},
|
504
505
|
{ # 21
|
505
|
-
:
|
506
|
-
:
|
507
|
-
:
|
508
|
-
:
|
509
|
-
:
|
510
|
-
:
|
511
|
-
:
|
506
|
+
series: { _theme: "6", _tint: "0.39997558519241921" },
|
507
|
+
negative: { _theme: "0", _tint: "-0.499984740745262" },
|
508
|
+
markers: { _theme: "6", _tint: "0.79998168889431442" },
|
509
|
+
first: { _theme: "6", _tint: "-0.249977111117893" },
|
510
|
+
last: { _theme: "6", _tint: "-0.249977111117893" },
|
511
|
+
high: { _theme: "6", _tint: "-0.499984740745262" },
|
512
|
+
low: { _theme: "6", _tint: "-0.499984740745262" }
|
512
513
|
},
|
513
514
|
{ # 22
|
514
|
-
:
|
515
|
-
:
|
516
|
-
:
|
517
|
-
:
|
518
|
-
:
|
519
|
-
:
|
520
|
-
:
|
515
|
+
series: { _theme: "7", _tint: "0.39997558519241921" },
|
516
|
+
negative: { _theme: "0", _tint: "-0.499984740745262" },
|
517
|
+
markers: { _theme: "7", _tint: "0.79998168889431442" },
|
518
|
+
first: { _theme: "7", _tint: "-0.249977111117893" },
|
519
|
+
last: { _theme: "7", _tint: "-0.249977111117893" },
|
520
|
+
high: { _theme: "7", _tint: "-0.499984740745262" },
|
521
|
+
low: { _theme: "7", _tint: "-0.499984740745262" }
|
521
522
|
},
|
522
523
|
{ # 23
|
523
|
-
:
|
524
|
-
:
|
525
|
-
:
|
526
|
-
:
|
527
|
-
:
|
528
|
-
:
|
529
|
-
:
|
524
|
+
series: { _theme: "8", _tint: "0.39997558519241921" },
|
525
|
+
negative: { _theme: "0", _tint: "-0.499984740745262" },
|
526
|
+
markers: { _theme: "8", _tint: "0.79998168889431442" },
|
527
|
+
first: { _theme: "8", _tint: "-0.249977111117893" },
|
528
|
+
last: { _theme: "8", _tint: "-0.249977111117893" },
|
529
|
+
high: { _theme: "8", _tint: "-0.499984740745262" },
|
530
|
+
low: { _theme: "8", _tint: "-0.499984740745262" }
|
530
531
|
},
|
531
532
|
{ # 24
|
532
|
-
:
|
533
|
-
:
|
534
|
-
:
|
535
|
-
:
|
536
|
-
:
|
537
|
-
:
|
538
|
-
:
|
533
|
+
series: { _theme: "9", _tint: "0.39997558519241921" },
|
534
|
+
negative: { _theme: "0", _tint: "-0.499984740745262" },
|
535
|
+
markers: { _theme: "9", _tint: "0.79998168889431442" },
|
536
|
+
first: { _theme: "9", _tint: "-0.249977111117893" },
|
537
|
+
last: { _theme: "9", _tint: "-0.249977111117893" },
|
538
|
+
high: { _theme: "9", _tint: "-0.499984740745262" },
|
539
|
+
low: { _theme: "9", _tint: "-0.499984740745262" }
|
539
540
|
},
|
540
541
|
{ # 25
|
541
|
-
:
|
542
|
-
:
|
543
|
-
:
|
544
|
-
:
|
545
|
-
:
|
546
|
-
:
|
547
|
-
:
|
542
|
+
series: { _theme: "1", _tint: "0.499984740745262" },
|
543
|
+
negative: { _theme: "1", _tint: "0.249977111117893" },
|
544
|
+
markers: { _theme: "1", _tint: "0.249977111117893" },
|
545
|
+
first: { _theme: "1", _tint: "0.249977111117893" },
|
546
|
+
last: { _theme: "1", _tint: "0.249977111117893" },
|
547
|
+
high: { _theme: "1", _tint: "0.249977111117893" },
|
548
|
+
low: { _theme: "1", _tint: "0.249977111117893" }
|
548
549
|
},
|
549
550
|
{ # 26
|
550
|
-
:
|
551
|
-
:
|
552
|
-
:
|
553
|
-
:
|
554
|
-
:
|
555
|
-
:
|
556
|
-
:
|
551
|
+
series: { _theme: "1", _tint: "0.34998626667073579" },
|
552
|
+
negative: { _theme: "0", _tint: "-0.249977111117893" },
|
553
|
+
markers: { _theme: "0", _tint: "-0.249977111117893" },
|
554
|
+
first: { _theme: "0", _tint: "-0.249977111117893" },
|
555
|
+
last: { _theme: "0", _tint: "-0.249977111117893" },
|
556
|
+
high: { _theme: "0", _tint: "-0.249977111117893" },
|
557
|
+
low: { _theme: "0", _tint: "-0.249977111117893" }
|
557
558
|
},
|
558
559
|
{ # 27
|
559
|
-
:
|
560
|
-
:
|
561
|
-
:
|
562
|
-
:
|
563
|
-
:
|
564
|
-
:
|
565
|
-
:
|
560
|
+
series: { _rgb: "FF323232" },
|
561
|
+
negative: { _rgb: "FFD00000" },
|
562
|
+
markers: { _rgb: "FFD00000" },
|
563
|
+
first: { _rgb: "FFD00000" },
|
564
|
+
last: { _rgb: "FFD00000" },
|
565
|
+
high: { _rgb: "FFD00000" },
|
566
|
+
low: { _rgb: "FFD00000" }
|
566
567
|
},
|
567
568
|
{ # 28
|
568
|
-
:
|
569
|
-
:
|
570
|
-
:
|
571
|
-
:
|
572
|
-
:
|
573
|
-
:
|
574
|
-
:
|
569
|
+
series: { _rgb: "FF000000" },
|
570
|
+
negative: { _rgb: "FF0070C0" },
|
571
|
+
markers: { _rgb: "FF0070C0" },
|
572
|
+
first: { _rgb: "FF0070C0" },
|
573
|
+
last: { _rgb: "FF0070C0" },
|
574
|
+
high: { _rgb: "FF0070C0" },
|
575
|
+
low: { _rgb: "FF0070C0" }
|
575
576
|
},
|
576
577
|
{ # 29
|
577
|
-
:
|
578
|
-
:
|
579
|
-
:
|
580
|
-
:
|
581
|
-
:
|
582
|
-
:
|
583
|
-
:
|
578
|
+
series: { _rgb: "FF376092" },
|
579
|
+
negative: { _rgb: "FFD00000" },
|
580
|
+
markers: { _rgb: "FFD00000" },
|
581
|
+
first: { _rgb: "FFD00000" },
|
582
|
+
last: { _rgb: "FFD00000" },
|
583
|
+
high: { _rgb: "FFD00000" },
|
584
|
+
low: { _rgb: "FFD00000" }
|
584
585
|
},
|
585
586
|
{ # 30
|
586
|
-
:
|
587
|
-
:
|
588
|
-
:
|
589
|
-
:
|
590
|
-
:
|
591
|
-
:
|
592
|
-
:
|
587
|
+
series: { _rgb: "FF0070C0" },
|
588
|
+
negative: { _rgb: "FF000000" },
|
589
|
+
markers: { _rgb: "FF000000" },
|
590
|
+
first: { _rgb: "FF000000" },
|
591
|
+
last: { _rgb: "FF000000" },
|
592
|
+
high: { _rgb: "FF000000" },
|
593
|
+
low: { _rgb: "FF000000" }
|
593
594
|
},
|
594
595
|
{ # 31
|
595
|
-
:
|
596
|
-
:
|
597
|
-
:
|
598
|
-
:
|
599
|
-
:
|
600
|
-
:
|
601
|
-
:
|
596
|
+
series: { _rgb: "FF5F5F5F" },
|
597
|
+
negative: { _rgb: "FFFFB620" },
|
598
|
+
markers: { _rgb: "FFD70077" },
|
599
|
+
first: { _rgb: "FF5687C2" },
|
600
|
+
last: { _rgb: "FF359CEB" },
|
601
|
+
high: { _rgb: "FF56BE79" },
|
602
|
+
low: { _rgb: "FFFF5055" }
|
602
603
|
},
|
603
604
|
{ # 32
|
604
|
-
:
|
605
|
-
:
|
606
|
-
:
|
607
|
-
:
|
608
|
-
:
|
609
|
-
:
|
610
|
-
:
|
605
|
+
series: { _rgb: "FF5687C2" },
|
606
|
+
negative: { _rgb: "FFFFB620" },
|
607
|
+
markers: { _rgb: "FFD70077" },
|
608
|
+
first: { _rgb: "FF777777" },
|
609
|
+
last: { _rgb: "FF359CEB" },
|
610
|
+
high: { _rgb: "FF56BE79" },
|
611
|
+
low: { _rgb: "FFFF5055" }
|
611
612
|
},
|
612
613
|
{ # 33
|
613
|
-
:
|
614
|
-
:
|
615
|
-
:
|
616
|
-
:
|
617
|
-
:
|
618
|
-
:
|
619
|
-
:
|
614
|
+
series: { _rgb: "FFC6EFCE" },
|
615
|
+
negative: { _rgb: "FFFFC7CE" },
|
616
|
+
markers: { _rgb: "FF8CADD6" },
|
617
|
+
first: { _rgb: "FFFFDC47" },
|
618
|
+
last: { _rgb: "FFFFEB9C" },
|
619
|
+
high: { _rgb: "FF60D276" },
|
620
|
+
low: { _rgb: "FFFF5367" }
|
620
621
|
},
|
621
622
|
{ # 34
|
622
|
-
:
|
623
|
-
:
|
624
|
-
:
|
625
|
-
:
|
626
|
-
:
|
627
|
-
:
|
628
|
-
:
|
623
|
+
series: { _rgb: "FF00B050" },
|
624
|
+
negative: { _rgb: "FFFF0000" },
|
625
|
+
markers: { _rgb: "FF0070C0" },
|
626
|
+
first: { _rgb: "FFFFC000" },
|
627
|
+
last: { _rgb: "FFFFC000" },
|
628
|
+
high: { _rgb: "FF00B050" },
|
629
|
+
low: { _rgb: "FFFF0000" }
|
629
630
|
},
|
630
631
|
{ # 35
|
631
|
-
:
|
632
|
-
:
|
633
|
-
:
|
634
|
-
:
|
635
|
-
:
|
636
|
-
:
|
637
|
-
:
|
632
|
+
series: { _theme: "3" },
|
633
|
+
negative: { _theme: "9" },
|
634
|
+
markers: { _theme: "8" },
|
635
|
+
first: { _theme: "4" },
|
636
|
+
last: { _theme: "5" },
|
637
|
+
high: { _theme: "6" },
|
638
|
+
low: { _theme: "7" }
|
638
639
|
},
|
639
640
|
{ # 36
|
640
|
-
:
|
641
|
-
:
|
642
|
-
:
|
643
|
-
:
|
644
|
-
:
|
645
|
-
:
|
646
|
-
:
|
641
|
+
series: { _theme: "1" },
|
642
|
+
negative: { _theme: "9" },
|
643
|
+
markers: { _theme: "8" },
|
644
|
+
first: { _theme: "4" },
|
645
|
+
last: { _theme: "5" },
|
646
|
+
high: { _theme: "6" },
|
647
|
+
low: { _theme: "7" }
|
647
648
|
}
|
648
649
|
]
|
649
650
|
end
|