thinreports 0.9.1 → 0.11.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +5 -5
- data/.github/workflows/test.yml +39 -0
- data/.gitignore +1 -0
- data/CHANGELOG.md +59 -2
- data/Dockerfile +12 -0
- data/Gemfile +7 -4
- data/README.md +44 -22
- data/Rakefile +14 -31
- data/lib/thinreports.rb +16 -15
- data/lib/thinreports/config.rb +2 -24
- data/lib/thinreports/core/errors.rb +6 -17
- data/lib/thinreports/core/format/base.rb +62 -61
- data/lib/thinreports/core/shape.rb +10 -12
- data/lib/thinreports/core/shape/base.rb +3 -12
- data/lib/thinreports/core/shape/base/interface.rb +34 -32
- data/lib/thinreports/core/shape/base/internal.rb +45 -43
- data/lib/thinreports/core/shape/basic.rb +12 -12
- data/lib/thinreports/core/shape/basic/block_format.rb +8 -6
- data/lib/thinreports/core/shape/basic/block_interface.rb +24 -22
- data/lib/thinreports/core/shape/basic/block_internal.rb +28 -26
- data/lib/thinreports/core/shape/basic/format.rb +11 -9
- data/lib/thinreports/core/shape/basic/interface.rb +79 -77
- data/lib/thinreports/core/shape/basic/internal.rb +17 -14
- data/lib/thinreports/core/shape/image_block.rb +9 -9
- data/lib/thinreports/core/shape/image_block/format.rb +7 -5
- data/lib/thinreports/core/shape/image_block/interface.rb +15 -13
- data/lib/thinreports/core/shape/image_block/internal.rb +10 -8
- data/lib/thinreports/core/shape/list.rb +13 -13
- data/lib/thinreports/core/shape/list/format.rb +83 -77
- data/lib/thinreports/core/shape/list/manager.rb +179 -176
- data/lib/thinreports/core/shape/list/page.rb +91 -93
- data/lib/thinreports/core/shape/list/page_state.rb +42 -40
- data/lib/thinreports/core/shape/list/section_format.rb +28 -26
- data/lib/thinreports/core/shape/list/section_interface.rb +42 -40
- data/lib/thinreports/core/shape/list/section_internal.rb +21 -19
- data/lib/thinreports/core/shape/manager.rb +4 -13
- data/lib/thinreports/core/shape/manager/format.rb +21 -19
- data/lib/thinreports/core/shape/manager/internal.rb +87 -84
- data/lib/thinreports/core/shape/manager/target.rb +93 -95
- data/lib/thinreports/core/shape/page_number.rb +9 -9
- data/lib/thinreports/core/shape/page_number/format.rb +20 -18
- data/lib/thinreports/core/shape/page_number/interface.rb +20 -18
- data/lib/thinreports/core/shape/page_number/internal.rb +46 -44
- data/lib/thinreports/core/shape/style.rb +5 -14
- data/lib/thinreports/core/shape/style/base.rb +121 -120
- data/lib/thinreports/core/shape/style/basic.rb +12 -10
- data/lib/thinreports/core/shape/style/graphic.rb +35 -33
- data/lib/thinreports/core/shape/style/text.rb +113 -107
- data/lib/thinreports/core/shape/text.rb +9 -9
- data/lib/thinreports/core/shape/text/format.rb +10 -9
- data/lib/thinreports/core/shape/text/interface.rb +13 -11
- data/lib/thinreports/core/shape/text/internal.rb +14 -12
- data/lib/thinreports/core/shape/text_block.rb +10 -10
- data/lib/thinreports/core/shape/text_block/format.rb +35 -33
- data/lib/thinreports/core/shape/text_block/formatter.rb +26 -24
- data/lib/thinreports/core/shape/text_block/formatter/basic.rb +25 -25
- data/lib/thinreports/core/shape/text_block/formatter/datetime.rb +15 -12
- data/lib/thinreports/core/shape/text_block/formatter/number.rb +52 -34
- data/lib/thinreports/core/shape/text_block/formatter/padding.rb +17 -14
- data/lib/thinreports/core/shape/text_block/interface.rb +25 -23
- data/lib/thinreports/core/shape/text_block/internal.rb +66 -68
- data/lib/thinreports/core/utils.rb +7 -3
- data/lib/thinreports/generator/pdf.rb +24 -25
- data/lib/thinreports/generator/pdf/document.rb +109 -110
- data/lib/thinreports/generator/pdf/document/draw_shape.rb +57 -51
- data/lib/thinreports/generator/pdf/document/draw_template_items.rb +50 -47
- data/lib/thinreports/generator/pdf/document/font.rb +67 -58
- data/lib/thinreports/generator/pdf/document/graphics.rb +32 -33
- data/lib/thinreports/generator/pdf/document/graphics/attributes.rb +121 -121
- data/lib/thinreports/generator/pdf/document/graphics/basic.rb +112 -114
- data/lib/thinreports/generator/pdf/document/graphics/image.rb +58 -150
- data/lib/thinreports/generator/pdf/document/graphics/text.rb +149 -137
- data/lib/thinreports/generator/pdf/document/page.rb +60 -64
- data/lib/thinreports/generator/pdf/document/parse_color.rb +37 -37
- data/lib/thinreports/generator/pdf/drawer/base.rb +41 -41
- data/lib/thinreports/generator/pdf/drawer/list.rb +56 -54
- data/lib/thinreports/generator/pdf/drawer/list_section.rb +42 -40
- data/lib/thinreports/generator/pdf/drawer/page.rb +101 -96
- data/lib/thinreports/generator/pdf/prawn_ext.rb +4 -30
- data/lib/thinreports/generator/pdf/prawn_ext/calc_image_dimensions.rb +32 -0
- data/lib/thinreports/generator/pdf/prawn_ext/width_of.rb +35 -0
- data/lib/thinreports/layout.rb +5 -7
- data/lib/thinreports/layout/base.rb +5 -9
- data/lib/thinreports/layout/format.rb +17 -13
- data/lib/thinreports/layout/legacy_schema.rb +17 -13
- data/lib/thinreports/layout/version.rb +22 -25
- data/lib/thinreports/report.rb +4 -6
- data/lib/thinreports/report/base.rb +24 -51
- data/lib/thinreports/report/internal.rb +13 -15
- data/lib/thinreports/report/page.rb +5 -11
- data/lib/thinreports/version.rb +2 -2
- data/thinreports.gemspec +10 -19
- metadata +13 -288
- data/.travis.yml +0 -19
- data/examples/character_spacing/character_spacing.rb +0 -8
- data/examples/character_spacing/character_spacing.tlf +0 -293
- data/examples/dynamic_image/dynamic_image.rb +0 -31
- data/examples/dynamic_image/dynamic_image.tlf +0 -661
- data/examples/dynamic_image/img200x100.png +0 -0
- data/examples/dynamic_image/img50x50.png +0 -0
- data/examples/dynamic_style/dynamic_style.rb +0 -150
- data/examples/dynamic_style/dynamic_style.tlf +0 -1835
- data/examples/dynamic_style/dynamic_style_in_list.tlf +0 -344
- data/examples/dynamic_style/image.png +0 -0
- data/examples/eudc/eudc.rb +0 -20
- data/examples/eudc/eudc.tlf +0 -180
- data/examples/eudc/eudc.ttf +0 -0
- data/examples/helper.rb +0 -50
- data/examples/hidden_shapes/hidden_shapes.rb +0 -9
- data/examples/hidden_shapes/hidden_shapes.tlf +0 -449
- data/examples/list_events/list_events.rb +0 -32
- data/examples/list_events/list_events.tlf +0 -361
- data/examples/list_manual_generation/list_manual_generation.rb +0 -22
- data/examples/list_manual_generation/list_manual_generation.tlf +0 -132
- data/examples/list_page_number/list_page_number.rb +0 -17
- data/examples/list_page_number/list_page_number.tlf +0 -254
- data/examples/page_number/page_number.rb +0 -33
- data/examples/page_number/page_number.tlf +0 -215
- data/examples/palleted_png/palleted_png.png +0 -0
- data/examples/palleted_png/palleted_png.rb +0 -11
- data/examples/palleted_png/palleted_png.tlf +0 -47
- data/examples/password_setting/password_setting.rb +0 -10
- data/examples/password_setting/password_setting.tlf +0 -45
- data/examples/report_callbacks/report_callbacks.rb +0 -14
- data/examples/report_callbacks/report_callbacks.tlf +0 -147
- data/examples/single_line_tblock/single_line_tblock.rb +0 -13
- data/examples/single_line_tblock/single_line_tblock.tlf +0 -170
- data/examples/tblock_overflow/tblock_overflow.rb +0 -20
- data/examples/tblock_overflow/tblock_overflow.tlf +0 -538
- data/examples/tblock_styles/font_size.tlf +0 -383
- data/examples/tblock_styles/tblock_styles.rb +0 -43
- data/examples/tblock_styles/tblock_styles.tlf +0 -889
- data/examples/text_align/text_align.rb +0 -8
- data/examples/text_align/text_align.tlf +0 -241
- data/examples/typeB_page_size/B4_ISO.tlf +0 -45
- data/examples/typeB_page_size/B4_JIS.tlf +0 -45
- data/examples/typeB_page_size/typeB_page_size.rb +0 -17
- data/examples/word_wrap/word_wrap.rb +0 -26
- data/examples/word_wrap/word_wrap.tlf +0 -297
- data/lib/thinreports/generator.rb +0 -29
- data/lib/thinreports/generator/base.rb +0 -40
- data/lib/thinreports/generator/configuration.rb +0 -31
- data/lib/thinreports/report/events.rb +0 -32
- data/test/data/font.ttf +0 -0
- data/test/data/image_normal.jpg +0 -0
- data/test/data/image_normal.png +0 -0
- data/test/data/image_normal_jpg_noext +0 -0
- data/test/data/image_normal_png_noext +0 -0
- data/test/data/image_pallete_based.png +0 -0
- data/test/data/legacy_layout/all-items.tlf +0 -1
- data/test/schema_helper.rb +0 -121
- data/test/test_helper.rb +0 -42
- data/test/tmp/.gitkeep +0 -0
- data/test/unit/core/format/test_base.rb +0 -152
- data/test/unit/core/shape/base/test_internal.rb +0 -87
- data/test/unit/core/shape/basic/test_block_format.rb +0 -23
- data/test/unit/core/shape/basic/test_block_interface.rb +0 -29
- data/test/unit/core/shape/basic/test_block_internal.rb +0 -55
- data/test/unit/core/shape/basic/test_format.rb +0 -37
- data/test/unit/core/shape/basic/test_interface.rb +0 -108
- data/test/unit/core/shape/basic/test_internal.rb +0 -55
- data/test/unit/core/shape/image_block/test_interface.rb +0 -24
- data/test/unit/core/shape/image_block/test_internal.rb +0 -31
- data/test/unit/core/shape/list/test_format.rb +0 -111
- data/test/unit/core/shape/list/test_manager.rb +0 -67
- data/test/unit/core/shape/list/test_page.rb +0 -82
- data/test/unit/core/shape/list/test_page_state.rb +0 -31
- data/test/unit/core/shape/list/test_section_format.rb +0 -36
- data/test/unit/core/shape/list/test_section_interface.rb +0 -75
- data/test/unit/core/shape/list/test_section_internal.rb +0 -50
- data/test/unit/core/shape/manager/test_format.rb +0 -38
- data/test/unit/core/shape/manager/test_internal.rb +0 -132
- data/test/unit/core/shape/manager/test_target.rb +0 -140
- data/test/unit/core/shape/page_number/test_format.rb +0 -55
- data/test/unit/core/shape/page_number/test_interface.rb +0 -33
- data/test/unit/core/shape/page_number/test_internal.rb +0 -81
- data/test/unit/core/shape/styles/test_base.rb +0 -191
- data/test/unit/core/shape/styles/test_basic.rb +0 -24
- data/test/unit/core/shape/styles/test_graphic.rb +0 -50
- data/test/unit/core/shape/styles/test_text.rb +0 -97
- data/test/unit/core/shape/text/test_format.rb +0 -44
- data/test/unit/core/shape/text/test_internal.rb +0 -20
- data/test/unit/core/shape/text_block/formatter/test_basic.rb +0 -24
- data/test/unit/core/shape/text_block/formatter/test_datetime.rb +0 -49
- data/test/unit/core/shape/text_block/formatter/test_number.rb +0 -76
- data/test/unit/core/shape/text_block/formatter/test_padding.rb +0 -77
- data/test/unit/core/shape/text_block/test_format.rb +0 -169
- data/test/unit/core/shape/text_block/test_formatter.rb +0 -28
- data/test/unit/core/shape/text_block/test_interface.rb +0 -63
- data/test/unit/core/shape/text_block/test_internal.rb +0 -128
- data/test/unit/core/test_shape.rb +0 -52
- data/test/unit/core/test_utils.rb +0 -68
- data/test/unit/generator/pdf/document/graphics/test_attributes.rb +0 -135
- data/test/unit/generator/pdf/document/graphics/test_basic.rb +0 -45
- data/test/unit/generator/pdf/document/graphics/test_image.rb +0 -150
- data/test/unit/generator/pdf/document/graphics/test_text.rb +0 -171
- data/test/unit/generator/pdf/document/test_font.rb +0 -84
- data/test/unit/generator/pdf/document/test_graphics.rb +0 -42
- data/test/unit/generator/pdf/document/test_page.rb +0 -122
- data/test/unit/generator/pdf/document/test_parse_color.rb +0 -30
- data/test/unit/generator/pdf/test_document.rb +0 -20
- data/test/unit/generator/test_base.rb +0 -40
- data/test/unit/generator/test_configuration.rb +0 -21
- data/test/unit/generator/test_pdf.rb +0 -24
- data/test/unit/layout/test_base.rb +0 -41
- data/test/unit/layout/test_format.rb +0 -100
- data/test/unit/layout/test_legacy_schema.rb +0 -574
- data/test/unit/layout/test_version.rb +0 -95
- data/test/unit/report/test_base.rb +0 -262
- data/test/unit/report/test_internal.rb +0 -206
- data/test/unit/test_config.rb +0 -51
- data/test/unit/test_layout.rb +0 -12
- data/test/unit/test_report.rb +0 -18
Binary file
|
Binary file
|
@@ -1,150 +0,0 @@
|
|
1
|
-
# coding: utf-8
|
2
|
-
|
3
|
-
example :dynamic_style, 'Change styles of the object dynamically' do |t|
|
4
|
-
image = t.resource('image.png')
|
5
|
-
setup_values = Proc.new do |page|
|
6
|
-
# The Basic Style
|
7
|
-
page.values(basic_show5: 'TextBlock',
|
8
|
-
basic_show6: image,
|
9
|
-
basic_hide5: 'TextBlock',
|
10
|
-
basic_hide6: image)
|
11
|
-
# The Text Style
|
12
|
-
page.values(text_b3: 'To bold',
|
13
|
-
text_b4: 'To normal',
|
14
|
-
text_i3: 'To italic',
|
15
|
-
text_i4: 'To normal',
|
16
|
-
text_u3: 'To underline',
|
17
|
-
text_u4: 'To none',
|
18
|
-
text_l3: 'To line-through',
|
19
|
-
text_l4: 'To none')
|
20
|
-
page.values(text_a2: 'To right align',
|
21
|
-
text_a3: "To right align\n右寄せ",
|
22
|
-
text_va2: "To bottom align\n下揃え",
|
23
|
-
text_color2: '赤色')
|
24
|
-
end
|
25
|
-
|
26
|
-
Thinreports::Report.generate(filename: t.output_filename,
|
27
|
-
layout: t.layout_filename) do |r|
|
28
|
-
# In case of using dynamic_style.tlf
|
29
|
-
|
30
|
-
# Create raw-page.
|
31
|
-
r.start_new_page
|
32
|
-
r.page.item(:title).value('Original Page')
|
33
|
-
|
34
|
-
setup_values.call(r.page)
|
35
|
-
|
36
|
-
# Create styled-page.
|
37
|
-
r.start_new_page
|
38
|
-
|
39
|
-
setup_values.call(r.page)
|
40
|
-
r.page.item(:title).value('Styled Page')
|
41
|
-
|
42
|
-
# The Basic Style
|
43
|
-
6.times do |i|
|
44
|
-
r.page.item("basic_show#{i + 1}").style(:visible, true)
|
45
|
-
r.page.item("basic_hide#{i + 1}").style(:visible, false)
|
46
|
-
end
|
47
|
-
|
48
|
-
# The Graphic Style
|
49
|
-
r.page.item(:graphic_bcolor1).style(:border_color, '#ff0000')
|
50
|
-
r.page[:graphic_bcolor2].style(:border_color, 'red')
|
51
|
-
# nil or 'none'.
|
52
|
-
r.page.item(:graphic_bcolor4).style(:border_color, nil)
|
53
|
-
|
54
|
-
r.page.item(:graphic_bwidth1).style(:border_width, 5)
|
55
|
-
r.page.item(:graphic_bwidth2).style(:border_width, 5)
|
56
|
-
r.page.item(:graphic_bwidth3).style(:border_width, 5)
|
57
|
-
r.page.item(:graphic_bwidth4).style(:border_width, 2)
|
58
|
-
r.page.item(:graphic_bwidth5).style(:border_width, 0)
|
59
|
-
|
60
|
-
r.page.item(:graphic_fcolor1).style(:fill_color, '#ff0000')
|
61
|
-
# nil or 'none'
|
62
|
-
r.page.item(:graphic_fcolor3).style(:fill_color, 'none')
|
63
|
-
r.page.item(:graphic_fcolor4).style(:fill_color, 'ff0000')
|
64
|
-
|
65
|
-
# The Text Style
|
66
|
-
[1, 3].each do |i|
|
67
|
-
r.page["text_b#{i}"].style(:bold, true)
|
68
|
-
r.page.item("text_i#{i}").style(:italic, true)
|
69
|
-
r.page.item("text_u#{i}").style(:underline, true)
|
70
|
-
r.page.item("text_l#{i}").style(:linethrough, true)
|
71
|
-
end
|
72
|
-
[2, 4].each do |i|
|
73
|
-
r.page.item("text_b#{i}").style(:bold, false)
|
74
|
-
r.page.item("text_i#{i}").style(:italic, false)
|
75
|
-
r.page.item("text_u#{i}").style(:underline, false)
|
76
|
-
r.page.item("text_l#{i}").style(:linethrough, false)
|
77
|
-
end
|
78
|
-
|
79
|
-
3.times do |i|
|
80
|
-
r.page.item("text_a#{i + 1}").style(:align, :right)
|
81
|
-
end
|
82
|
-
2.times do |i|
|
83
|
-
r.page.item("text_va#{i + 1}").style(:valign, :bottom)
|
84
|
-
end
|
85
|
-
|
86
|
-
2.times do |i|
|
87
|
-
r.page["text_color#{i + 1}"].style(:color, 'ff0000')
|
88
|
-
end
|
89
|
-
|
90
|
-
# In case of using "dynamic_style_in_list.tlf"
|
91
|
-
r.start_new_page(layout: t.resource('dynamic_style_in_list.tlf'))
|
92
|
-
|
93
|
-
# Settings for Header.
|
94
|
-
r.page.list(:list).header do |header|
|
95
|
-
header.item(:rect).styles(border_color: nil,
|
96
|
-
fill_color: 'ff00ff')
|
97
|
-
header.item(:text).styles(align: :center,
|
98
|
-
valign: :middle,
|
99
|
-
bold: true)
|
100
|
-
header[:tblock].styles(align: :center,
|
101
|
-
valign: :middle,
|
102
|
-
color: 'red',
|
103
|
-
linethrough: true)
|
104
|
-
end
|
105
|
-
|
106
|
-
1.step(10, 1) do |i|
|
107
|
-
# Flag of overflowed list-page.
|
108
|
-
is_overflowed = r.page.list(:list).overflow?
|
109
|
-
|
110
|
-
# Add details.
|
111
|
-
r.page.list(:list).add_row do |row|
|
112
|
-
case
|
113
|
-
when i % 2 == 0
|
114
|
-
row.item(:rect).styles(border_color: 'ff0000',
|
115
|
-
border_width: 3,
|
116
|
-
fill_color: '0000ff')
|
117
|
-
row.item(:text).styles(color: 'red',
|
118
|
-
align: :left,
|
119
|
-
valign: :middle)
|
120
|
-
row.item(:tblock).styles(color: 'blue',
|
121
|
-
align: :left,
|
122
|
-
valign: :middle)
|
123
|
-
when i % 3 == 0
|
124
|
-
row.item(:rect).style(:visible, false)
|
125
|
-
row.item(:text).styles(color: '0000ff',
|
126
|
-
align: :right,
|
127
|
-
valign: :bottom)
|
128
|
-
row.item(:tblock).styles(color: 'ff0000',
|
129
|
-
align: :right,
|
130
|
-
valign: :bottom)
|
131
|
-
end
|
132
|
-
end
|
133
|
-
|
134
|
-
# Change header styles when list-page was overflowed.
|
135
|
-
if is_overflowed
|
136
|
-
r.page.list(:list).header do |header|
|
137
|
-
header.item(:rect).styles(border_color: 'black',
|
138
|
-
fill_color: '#ffffff')
|
139
|
-
header.item(:text).styles(align: :left,
|
140
|
-
valign: :top,
|
141
|
-
bold: false)
|
142
|
-
header.item(:tblock).styles(align: :left,
|
143
|
-
valign: :top,
|
144
|
-
color: '#000000',
|
145
|
-
linethrough: false)
|
146
|
-
end
|
147
|
-
end
|
148
|
-
end
|
149
|
-
end
|
150
|
-
end
|
@@ -1,1835 +0,0 @@
|
|
1
|
-
{
|
2
|
-
"version": "0.9.0",
|
3
|
-
"items": [
|
4
|
-
{
|
5
|
-
"id": "",
|
6
|
-
"type": "text",
|
7
|
-
"display": true,
|
8
|
-
"description": "",
|
9
|
-
"x": 20,
|
10
|
-
"y": 42,
|
11
|
-
"width": 374.1,
|
12
|
-
"height": 23,
|
13
|
-
"style": {
|
14
|
-
"font-family": [
|
15
|
-
"Helvetica"
|
16
|
-
],
|
17
|
-
"font-size": 20,
|
18
|
-
"color": "#000000",
|
19
|
-
"text-align": "left",
|
20
|
-
"vertical-align": "top",
|
21
|
-
"line-height": "",
|
22
|
-
"line-height-ratio": "",
|
23
|
-
"letter-spacing": "",
|
24
|
-
"font-style": [
|
25
|
-
"underline"
|
26
|
-
]
|
27
|
-
},
|
28
|
-
"texts": [
|
29
|
-
"The Basic Style"
|
30
|
-
]
|
31
|
-
},
|
32
|
-
{
|
33
|
-
"id": "",
|
34
|
-
"type": "text",
|
35
|
-
"display": true,
|
36
|
-
"description": "",
|
37
|
-
"x": 20,
|
38
|
-
"y": 72,
|
39
|
-
"width": 280,
|
40
|
-
"height": 14,
|
41
|
-
"style": {
|
42
|
-
"font-family": [
|
43
|
-
"Courier New"
|
44
|
-
],
|
45
|
-
"font-size": 12,
|
46
|
-
"color": "#000000",
|
47
|
-
"text-align": "left",
|
48
|
-
"vertical-align": "top",
|
49
|
-
"line-height": "",
|
50
|
-
"line-height-ratio": "",
|
51
|
-
"letter-spacing": "",
|
52
|
-
"font-style": []
|
53
|
-
},
|
54
|
-
"texts": [
|
55
|
-
"Visibility: To true from false."
|
56
|
-
]
|
57
|
-
},
|
58
|
-
{
|
59
|
-
"id": "basic_show1",
|
60
|
-
"type": "rect",
|
61
|
-
"display": false,
|
62
|
-
"description": "",
|
63
|
-
"x": 20,
|
64
|
-
"y": 90,
|
65
|
-
"width": 52,
|
66
|
-
"height": 34,
|
67
|
-
"style": {
|
68
|
-
"border-color": "#000000",
|
69
|
-
"border-width": 1,
|
70
|
-
"border-style": "solid",
|
71
|
-
"fill-color": "#FFFFFF"
|
72
|
-
},
|
73
|
-
"border-radius": 0
|
74
|
-
},
|
75
|
-
{
|
76
|
-
"id": "basic_show2",
|
77
|
-
"type": "ellipse",
|
78
|
-
"display": false,
|
79
|
-
"description": "",
|
80
|
-
"style": {
|
81
|
-
"border-color": "#000000",
|
82
|
-
"border-width": 1,
|
83
|
-
"border-style": "solid",
|
84
|
-
"fill-color": "#FFFFFF"
|
85
|
-
},
|
86
|
-
"cx": 118.45,
|
87
|
-
"cy": 108.5,
|
88
|
-
"rx": 31.55,
|
89
|
-
"ry": 21.5
|
90
|
-
},
|
91
|
-
{
|
92
|
-
"id": "basic_show3",
|
93
|
-
"type": "text",
|
94
|
-
"display": false,
|
95
|
-
"description": "",
|
96
|
-
"x": 165.1,
|
97
|
-
"y": 97,
|
98
|
-
"width": 36,
|
99
|
-
"height": 20.5,
|
100
|
-
"style": {
|
101
|
-
"font-family": [
|
102
|
-
"Helvetica"
|
103
|
-
],
|
104
|
-
"font-size": 18,
|
105
|
-
"color": "#000000",
|
106
|
-
"text-align": "left",
|
107
|
-
"vertical-align": "top",
|
108
|
-
"line-height": "",
|
109
|
-
"line-height-ratio": "",
|
110
|
-
"letter-spacing": "",
|
111
|
-
"font-style": []
|
112
|
-
},
|
113
|
-
"texts": [
|
114
|
-
"Text"
|
115
|
-
]
|
116
|
-
},
|
117
|
-
{
|
118
|
-
"id": "basic_show4",
|
119
|
-
"type": "image",
|
120
|
-
"display": false,
|
121
|
-
"description": "",
|
122
|
-
"x": 213.1,
|
123
|
-
"y": 91,
|
124
|
-
"width": 41,
|
125
|
-
"height": 41,
|
126
|
-
"data": {
|
127
|
-
"mime-type": "image/png",
|
128
|
-
"base64": "iVBORw0KGgoAAAANSUhEUgAAADIAAAAyCAYAAAAeP4ixAAAABHNCSVQICAgIfAhkiAAAAAlwSFlzAAAOdAAADnQBaySz1gAAABZ0RVh0Q3JlYXRpb24gVGltZQAwOS8xNS8xMe/neuYAAAAfdEVYdFNvZnR3YXJlAE1hY3JvbWVkaWEgRmlyZXdvcmtzIDi1aNJ4AAAAV0lEQVRoge3PAQ3AMAzAsH78OfckLi26bATJM7M7P3BuB3zFSI2RGiM1RmqM1BipMVJjpMZIjZEaIzVGaozUGKkxUmOkxkiNkRojNUZqjNQYqTFSY6TmBQWzAmLkoN8LAAAAAElFTkSuQmCC"
|
129
|
-
}
|
130
|
-
},
|
131
|
-
{
|
132
|
-
"id": "basic_show5",
|
133
|
-
"type": "text-block",
|
134
|
-
"display": false,
|
135
|
-
"description": "",
|
136
|
-
"x": 267.1,
|
137
|
-
"y": 97,
|
138
|
-
"width": 106,
|
139
|
-
"height": 20,
|
140
|
-
"style": {
|
141
|
-
"font-family": [
|
142
|
-
"Helvetica"
|
143
|
-
],
|
144
|
-
"font-size": 18,
|
145
|
-
"color": "#000000",
|
146
|
-
"text-align": "left",
|
147
|
-
"vertical-align": "top",
|
148
|
-
"line-height": "",
|
149
|
-
"line-height-ratio": "",
|
150
|
-
"letter-spacing": "",
|
151
|
-
"font-style": [],
|
152
|
-
"overflow": "truncate",
|
153
|
-
"word-wrap": "break-word"
|
154
|
-
},
|
155
|
-
"reference-id": "",
|
156
|
-
"value": "",
|
157
|
-
"multiple-line": false,
|
158
|
-
"format": {
|
159
|
-
"base": "",
|
160
|
-
"type": ""
|
161
|
-
}
|
162
|
-
},
|
163
|
-
{
|
164
|
-
"id": "",
|
165
|
-
"type": "text",
|
166
|
-
"display": true,
|
167
|
-
"description": "",
|
168
|
-
"x": 20,
|
169
|
-
"y": 147,
|
170
|
-
"width": 280,
|
171
|
-
"height": 14,
|
172
|
-
"style": {
|
173
|
-
"font-family": [
|
174
|
-
"Courier New"
|
175
|
-
],
|
176
|
-
"font-size": 12,
|
177
|
-
"color": "#000000",
|
178
|
-
"text-align": "left",
|
179
|
-
"vertical-align": "top",
|
180
|
-
"line-height": "",
|
181
|
-
"line-height-ratio": "",
|
182
|
-
"letter-spacing": "",
|
183
|
-
"font-style": []
|
184
|
-
},
|
185
|
-
"texts": [
|
186
|
-
"Visibility: To false from true."
|
187
|
-
]
|
188
|
-
},
|
189
|
-
{
|
190
|
-
"id": "basic_hide1",
|
191
|
-
"type": "rect",
|
192
|
-
"display": true,
|
193
|
-
"description": "",
|
194
|
-
"x": 20,
|
195
|
-
"y": 165,
|
196
|
-
"width": 52,
|
197
|
-
"height": 34,
|
198
|
-
"style": {
|
199
|
-
"border-color": "#000000",
|
200
|
-
"border-width": 1,
|
201
|
-
"border-style": "solid",
|
202
|
-
"fill-color": "#FFFFFF"
|
203
|
-
},
|
204
|
-
"border-radius": 0
|
205
|
-
},
|
206
|
-
{
|
207
|
-
"id": "basic_hide2",
|
208
|
-
"type": "ellipse",
|
209
|
-
"display": true,
|
210
|
-
"description": "",
|
211
|
-
"style": {
|
212
|
-
"border-color": "#000000",
|
213
|
-
"border-width": 1,
|
214
|
-
"border-style": "solid",
|
215
|
-
"fill-color": "#FFFFFF"
|
216
|
-
},
|
217
|
-
"cx": 118.45,
|
218
|
-
"cy": 183.5,
|
219
|
-
"rx": 31.55,
|
220
|
-
"ry": 21.5
|
221
|
-
},
|
222
|
-
{
|
223
|
-
"id": "basic_hide3",
|
224
|
-
"type": "text",
|
225
|
-
"display": true,
|
226
|
-
"description": "",
|
227
|
-
"x": 165.1,
|
228
|
-
"y": 172,
|
229
|
-
"width": 36,
|
230
|
-
"height": 20.5,
|
231
|
-
"style": {
|
232
|
-
"font-family": [
|
233
|
-
"Helvetica"
|
234
|
-
],
|
235
|
-
"font-size": 18,
|
236
|
-
"color": "#000000",
|
237
|
-
"text-align": "left",
|
238
|
-
"vertical-align": "top",
|
239
|
-
"line-height": "",
|
240
|
-
"line-height-ratio": "",
|
241
|
-
"letter-spacing": "",
|
242
|
-
"font-style": []
|
243
|
-
},
|
244
|
-
"texts": [
|
245
|
-
"Text"
|
246
|
-
]
|
247
|
-
},
|
248
|
-
{
|
249
|
-
"id": "basic_hide4",
|
250
|
-
"type": "image",
|
251
|
-
"display": true,
|
252
|
-
"description": "",
|
253
|
-
"x": 213.1,
|
254
|
-
"y": 166,
|
255
|
-
"width": 41,
|
256
|
-
"height": 41,
|
257
|
-
"data": {
|
258
|
-
"mime-type": "image/png",
|
259
|
-
"base64": "iVBORw0KGgoAAAANSUhEUgAAADIAAAAyCAYAAAAeP4ixAAAABHNCSVQICAgIfAhkiAAAAAlwSFlzAAAOdAAADnQBaySz1gAAABZ0RVh0Q3JlYXRpb24gVGltZQAwOS8xNS8xMe/neuYAAAAfdEVYdFNvZnR3YXJlAE1hY3JvbWVkaWEgRmlyZXdvcmtzIDi1aNJ4AAAAV0lEQVRoge3PAQ3AMAzAsH78OfckLi26bATJM7M7P3BuB3zFSI2RGiM1RmqM1BipMVJjpMZIjZEaIzVGaozUGKkxUmOkxkiNkRojNUZqjNQYqTFSY6TmBQWzAmLkoN8LAAAAAElFTkSuQmCC"
|
260
|
-
}
|
261
|
-
},
|
262
|
-
{
|
263
|
-
"id": "basic_hide5",
|
264
|
-
"type": "text-block",
|
265
|
-
"display": true,
|
266
|
-
"description": "",
|
267
|
-
"x": 267.1,
|
268
|
-
"y": 172,
|
269
|
-
"width": 106,
|
270
|
-
"height": 20,
|
271
|
-
"style": {
|
272
|
-
"font-family": [
|
273
|
-
"Helvetica"
|
274
|
-
],
|
275
|
-
"font-size": 18,
|
276
|
-
"color": "#000000",
|
277
|
-
"text-align": "left",
|
278
|
-
"vertical-align": "top",
|
279
|
-
"line-height": "",
|
280
|
-
"line-height-ratio": "",
|
281
|
-
"letter-spacing": "",
|
282
|
-
"font-style": [],
|
283
|
-
"overflow": "truncate",
|
284
|
-
"word-wrap": "break-word"
|
285
|
-
},
|
286
|
-
"reference-id": "",
|
287
|
-
"value": "",
|
288
|
-
"multiple-line": false,
|
289
|
-
"format": {
|
290
|
-
"base": "",
|
291
|
-
"type": ""
|
292
|
-
}
|
293
|
-
},
|
294
|
-
{
|
295
|
-
"id": "",
|
296
|
-
"type": "text",
|
297
|
-
"display": true,
|
298
|
-
"description": "",
|
299
|
-
"x": 20,
|
300
|
-
"y": 222,
|
301
|
-
"width": 374.1,
|
302
|
-
"height": 23,
|
303
|
-
"style": {
|
304
|
-
"font-family": [
|
305
|
-
"Helvetica"
|
306
|
-
],
|
307
|
-
"font-size": 20,
|
308
|
-
"color": "#000000",
|
309
|
-
"text-align": "left",
|
310
|
-
"vertical-align": "top",
|
311
|
-
"line-height": "",
|
312
|
-
"line-height-ratio": "",
|
313
|
-
"letter-spacing": "",
|
314
|
-
"font-style": [
|
315
|
-
"underline"
|
316
|
-
]
|
317
|
-
},
|
318
|
-
"texts": [
|
319
|
-
"The Graphic Style"
|
320
|
-
]
|
321
|
-
},
|
322
|
-
{
|
323
|
-
"id": "graphic_bcolor1",
|
324
|
-
"type": "rect",
|
325
|
-
"display": true,
|
326
|
-
"description": "",
|
327
|
-
"x": 20,
|
328
|
-
"y": 269,
|
329
|
-
"width": 89,
|
330
|
-
"height": 44,
|
331
|
-
"style": {
|
332
|
-
"border-color": "#000000",
|
333
|
-
"border-width": 1,
|
334
|
-
"border-style": "solid",
|
335
|
-
"fill-color": "#FFFFFF"
|
336
|
-
},
|
337
|
-
"border-radius": 0
|
338
|
-
},
|
339
|
-
{
|
340
|
-
"id": "",
|
341
|
-
"type": "text",
|
342
|
-
"display": true,
|
343
|
-
"description": "",
|
344
|
-
"x": 20,
|
345
|
-
"y": 252,
|
346
|
-
"width": 245,
|
347
|
-
"height": 14,
|
348
|
-
"style": {
|
349
|
-
"font-family": [
|
350
|
-
"Courier New"
|
351
|
-
],
|
352
|
-
"font-size": 12,
|
353
|
-
"color": "#000000",
|
354
|
-
"text-align": "left",
|
355
|
-
"vertical-align": "top",
|
356
|
-
"line-height": "",
|
357
|
-
"line-height-ratio": "",
|
358
|
-
"letter-spacing": "",
|
359
|
-
"font-style": []
|
360
|
-
},
|
361
|
-
"texts": [
|
362
|
-
"Border Color: To red from black."
|
363
|
-
]
|
364
|
-
},
|
365
|
-
{
|
366
|
-
"id": "graphic_bcolor2",
|
367
|
-
"type": "ellipse",
|
368
|
-
"display": true,
|
369
|
-
"description": "",
|
370
|
-
"style": {
|
371
|
-
"border-color": "#000000",
|
372
|
-
"border-width": 1,
|
373
|
-
"border-style": "solid",
|
374
|
-
"fill-color": "#FFFFFF"
|
375
|
-
},
|
376
|
-
"cx": 167.05,
|
377
|
-
"cy": 291,
|
378
|
-
"rx": 38.05,
|
379
|
-
"ry": 23
|
380
|
-
},
|
381
|
-
{
|
382
|
-
"id": "graphic_bcolor3",
|
383
|
-
"type": "line",
|
384
|
-
"display": true,
|
385
|
-
"description": "",
|
386
|
-
"style": {
|
387
|
-
"border-color": "#000000",
|
388
|
-
"border-width": 1,
|
389
|
-
"border-style": "solid"
|
390
|
-
},
|
391
|
-
"x1": 227.1,
|
392
|
-
"y1": 276,
|
393
|
-
"x2": 286.1,
|
394
|
-
"y2": 302
|
395
|
-
},
|
396
|
-
{
|
397
|
-
"id": "graphic_bcolor4",
|
398
|
-
"type": "rect",
|
399
|
-
"display": true,
|
400
|
-
"description": "",
|
401
|
-
"x": 311.1,
|
402
|
-
"y": 268,
|
403
|
-
"width": 89,
|
404
|
-
"height": 44,
|
405
|
-
"style": {
|
406
|
-
"border-color": "#ff0000",
|
407
|
-
"border-width": 1,
|
408
|
-
"border-style": "solid",
|
409
|
-
"fill-color": "#e5b9b7"
|
410
|
-
},
|
411
|
-
"border-radius": 0
|
412
|
-
},
|
413
|
-
{
|
414
|
-
"id": "",
|
415
|
-
"type": "text",
|
416
|
-
"display": true,
|
417
|
-
"description": "",
|
418
|
-
"x": 311,
|
419
|
-
"y": 316.9,
|
420
|
-
"width": 182.1,
|
421
|
-
"height": 14,
|
422
|
-
"style": {
|
423
|
-
"font-family": [
|
424
|
-
"Courier New"
|
425
|
-
],
|
426
|
-
"font-size": 12,
|
427
|
-
"color": "#000000",
|
428
|
-
"text-align": "left",
|
429
|
-
"vertical-align": "top",
|
430
|
-
"line-height": "",
|
431
|
-
"line-height-ratio": "",
|
432
|
-
"letter-spacing": "",
|
433
|
-
"font-style": []
|
434
|
-
},
|
435
|
-
"texts": [
|
436
|
-
"To none from red."
|
437
|
-
]
|
438
|
-
},
|
439
|
-
{
|
440
|
-
"id": "",
|
441
|
-
"type": "text",
|
442
|
-
"display": true,
|
443
|
-
"description": "",
|
444
|
-
"x": 20,
|
445
|
-
"y": 332,
|
446
|
-
"width": 245,
|
447
|
-
"height": 14,
|
448
|
-
"style": {
|
449
|
-
"font-family": [
|
450
|
-
"Courier New"
|
451
|
-
],
|
452
|
-
"font-size": 12,
|
453
|
-
"color": "#000000",
|
454
|
-
"text-align": "left",
|
455
|
-
"vertical-align": "top",
|
456
|
-
"line-height": "",
|
457
|
-
"line-height-ratio": "",
|
458
|
-
"letter-spacing": "",
|
459
|
-
"font-style": []
|
460
|
-
},
|
461
|
-
"texts": [
|
462
|
-
"Border Width: To 5 from 1."
|
463
|
-
]
|
464
|
-
},
|
465
|
-
{
|
466
|
-
"id": "graphic_bwidth1",
|
467
|
-
"type": "rect",
|
468
|
-
"display": true,
|
469
|
-
"description": "",
|
470
|
-
"x": 20,
|
471
|
-
"y": 350,
|
472
|
-
"width": 89,
|
473
|
-
"height": 44,
|
474
|
-
"style": {
|
475
|
-
"border-color": "#000000",
|
476
|
-
"border-width": 1,
|
477
|
-
"border-style": "solid",
|
478
|
-
"fill-color": "#FFFFFF"
|
479
|
-
},
|
480
|
-
"border-radius": 0
|
481
|
-
},
|
482
|
-
{
|
483
|
-
"id": "graphic_bwidth2",
|
484
|
-
"type": "ellipse",
|
485
|
-
"display": true,
|
486
|
-
"description": "",
|
487
|
-
"style": {
|
488
|
-
"border-color": "#000000",
|
489
|
-
"border-width": 1,
|
490
|
-
"border-style": "solid",
|
491
|
-
"fill-color": "#FFFFFF"
|
492
|
-
},
|
493
|
-
"cx": 167.05,
|
494
|
-
"cy": 370.9,
|
495
|
-
"rx": 38.05,
|
496
|
-
"ry": 23
|
497
|
-
},
|
498
|
-
{
|
499
|
-
"id": "graphic_bwidth3",
|
500
|
-
"type": "line",
|
501
|
-
"display": true,
|
502
|
-
"description": "",
|
503
|
-
"style": {
|
504
|
-
"border-color": "#000000",
|
505
|
-
"border-width": 1,
|
506
|
-
"border-style": "solid"
|
507
|
-
},
|
508
|
-
"x1": 227.1,
|
509
|
-
"y1": 355.9,
|
510
|
-
"x2": 286.1,
|
511
|
-
"y2": 381.9
|
512
|
-
},
|
513
|
-
{
|
514
|
-
"id": "graphic_bwidth4",
|
515
|
-
"type": "rect",
|
516
|
-
"display": true,
|
517
|
-
"description": "",
|
518
|
-
"x": 311.1,
|
519
|
-
"y": 343,
|
520
|
-
"width": 89,
|
521
|
-
"height": 44,
|
522
|
-
"style": {
|
523
|
-
"border-color": "#ff0000",
|
524
|
-
"border-width": 0,
|
525
|
-
"border-style": "solid",
|
526
|
-
"fill-color": "#e5b9b7"
|
527
|
-
},
|
528
|
-
"border-radius": 0
|
529
|
-
},
|
530
|
-
{
|
531
|
-
"id": "",
|
532
|
-
"type": "text",
|
533
|
-
"display": true,
|
534
|
-
"description": "",
|
535
|
-
"x": 311,
|
536
|
-
"y": 391.9,
|
537
|
-
"width": 182.1,
|
538
|
-
"height": 14,
|
539
|
-
"style": {
|
540
|
-
"font-family": [
|
541
|
-
"Courier New"
|
542
|
-
],
|
543
|
-
"font-size": 12,
|
544
|
-
"color": "#000000",
|
545
|
-
"text-align": "left",
|
546
|
-
"vertical-align": "top",
|
547
|
-
"line-height": "",
|
548
|
-
"line-height-ratio": "",
|
549
|
-
"letter-spacing": "",
|
550
|
-
"font-style": []
|
551
|
-
},
|
552
|
-
"texts": [
|
553
|
-
"To 2 from none(0)."
|
554
|
-
]
|
555
|
-
},
|
556
|
-
{
|
557
|
-
"id": "graphic_bwidth5",
|
558
|
-
"type": "rect",
|
559
|
-
"display": true,
|
560
|
-
"description": "",
|
561
|
-
"x": 448.1,
|
562
|
-
"y": 343,
|
563
|
-
"width": 89,
|
564
|
-
"height": 44,
|
565
|
-
"style": {
|
566
|
-
"border-color": "#ff0000",
|
567
|
-
"border-width": 1,
|
568
|
-
"border-style": "solid",
|
569
|
-
"fill-color": "#e5b9b7"
|
570
|
-
},
|
571
|
-
"border-radius": 0
|
572
|
-
},
|
573
|
-
{
|
574
|
-
"id": "",
|
575
|
-
"type": "text",
|
576
|
-
"display": true,
|
577
|
-
"description": "",
|
578
|
-
"x": 448,
|
579
|
-
"y": 391.9,
|
580
|
-
"width": 129.6,
|
581
|
-
"height": 14,
|
582
|
-
"style": {
|
583
|
-
"font-family": [
|
584
|
-
"Courier New"
|
585
|
-
],
|
586
|
-
"font-size": 12,
|
587
|
-
"color": "#000000",
|
588
|
-
"text-align": "left",
|
589
|
-
"vertical-align": "top",
|
590
|
-
"line-height": "",
|
591
|
-
"line-height-ratio": "",
|
592
|
-
"letter-spacing": "",
|
593
|
-
"font-style": []
|
594
|
-
},
|
595
|
-
"texts": [
|
596
|
-
"To none(0) from 1."
|
597
|
-
]
|
598
|
-
},
|
599
|
-
{
|
600
|
-
"id": "",
|
601
|
-
"type": "text",
|
602
|
-
"display": true,
|
603
|
-
"description": "",
|
604
|
-
"x": 20,
|
605
|
-
"y": 412,
|
606
|
-
"width": 245,
|
607
|
-
"height": 14,
|
608
|
-
"style": {
|
609
|
-
"font-family": [
|
610
|
-
"Courier New"
|
611
|
-
],
|
612
|
-
"font-size": 12,
|
613
|
-
"color": "#000000",
|
614
|
-
"text-align": "left",
|
615
|
-
"vertical-align": "top",
|
616
|
-
"line-height": "",
|
617
|
-
"line-height-ratio": "",
|
618
|
-
"letter-spacing": "",
|
619
|
-
"font-style": []
|
620
|
-
},
|
621
|
-
"texts": [
|
622
|
-
"Fill Color: To red from white."
|
623
|
-
]
|
624
|
-
},
|
625
|
-
{
|
626
|
-
"id": "graphic_fcolor1",
|
627
|
-
"type": "rect",
|
628
|
-
"display": true,
|
629
|
-
"description": "",
|
630
|
-
"x": 20,
|
631
|
-
"y": 428.8,
|
632
|
-
"width": 89,
|
633
|
-
"height": 44,
|
634
|
-
"style": {
|
635
|
-
"border-color": "#000000",
|
636
|
-
"border-width": 1,
|
637
|
-
"border-style": "solid",
|
638
|
-
"fill-color": "#FFFFFF"
|
639
|
-
},
|
640
|
-
"border-radius": 0
|
641
|
-
},
|
642
|
-
{
|
643
|
-
"id": "graphic_fcolor2",
|
644
|
-
"type": "ellipse",
|
645
|
-
"display": true,
|
646
|
-
"description": "",
|
647
|
-
"style": {
|
648
|
-
"border-color": "#000000",
|
649
|
-
"border-width": 1,
|
650
|
-
"border-style": "solid",
|
651
|
-
"fill-color": "#FFFFFF"
|
652
|
-
},
|
653
|
-
"cx": 167.05,
|
654
|
-
"cy": 450.8,
|
655
|
-
"rx": 38.05,
|
656
|
-
"ry": 23
|
657
|
-
},
|
658
|
-
{
|
659
|
-
"id": "",
|
660
|
-
"type": "text",
|
661
|
-
"display": true,
|
662
|
-
"description": "",
|
663
|
-
"x": 226,
|
664
|
-
"y": 476.7,
|
665
|
-
"width": 182.1,
|
666
|
-
"height": 14,
|
667
|
-
"style": {
|
668
|
-
"font-family": [
|
669
|
-
"Courier New"
|
670
|
-
],
|
671
|
-
"font-size": 12,
|
672
|
-
"color": "#000000",
|
673
|
-
"text-align": "left",
|
674
|
-
"vertical-align": "top",
|
675
|
-
"line-height": "",
|
676
|
-
"line-height-ratio": "",
|
677
|
-
"letter-spacing": "",
|
678
|
-
"font-style": []
|
679
|
-
},
|
680
|
-
"texts": [
|
681
|
-
"To none from black."
|
682
|
-
]
|
683
|
-
},
|
684
|
-
{
|
685
|
-
"id": "",
|
686
|
-
"type": "ellipse",
|
687
|
-
"display": true,
|
688
|
-
"description": "",
|
689
|
-
"style": {
|
690
|
-
"border-color": "#000000",
|
691
|
-
"border-width": 1,
|
692
|
-
"border-style": "solid",
|
693
|
-
"fill-color": "#FFFFFF"
|
694
|
-
},
|
695
|
-
"cx": 302.5,
|
696
|
-
"cy": 434.5,
|
697
|
-
"rx": 37.5,
|
698
|
-
"ry": 15.5
|
699
|
-
},
|
700
|
-
{
|
701
|
-
"id": "graphic_fcolor3",
|
702
|
-
"type": "rect",
|
703
|
-
"display": true,
|
704
|
-
"description": "",
|
705
|
-
"x": 226,
|
706
|
-
"y": 427.8,
|
707
|
-
"width": 73,
|
708
|
-
"height": 35.2,
|
709
|
-
"style": {
|
710
|
-
"border-color": "#000000",
|
711
|
-
"border-width": 1,
|
712
|
-
"border-style": "solid",
|
713
|
-
"fill-color": "#000000"
|
714
|
-
},
|
715
|
-
"border-radius": 0
|
716
|
-
},
|
717
|
-
{
|
718
|
-
"id": "",
|
719
|
-
"type": "text",
|
720
|
-
"display": true,
|
721
|
-
"description": "",
|
722
|
-
"x": 371,
|
723
|
-
"y": 476.7,
|
724
|
-
"width": 182.1,
|
725
|
-
"height": 14,
|
726
|
-
"style": {
|
727
|
-
"font-family": [
|
728
|
-
"Courier New"
|
729
|
-
],
|
730
|
-
"font-size": 12,
|
731
|
-
"color": "#000000",
|
732
|
-
"text-align": "left",
|
733
|
-
"vertical-align": "top",
|
734
|
-
"line-height": "",
|
735
|
-
"line-height-ratio": "",
|
736
|
-
"letter-spacing": "",
|
737
|
-
"font-style": []
|
738
|
-
},
|
739
|
-
"texts": [
|
740
|
-
"To red from none."
|
741
|
-
]
|
742
|
-
},
|
743
|
-
{
|
744
|
-
"id": "",
|
745
|
-
"type": "ellipse",
|
746
|
-
"display": true,
|
747
|
-
"description": "",
|
748
|
-
"style": {
|
749
|
-
"border-color": "#000000",
|
750
|
-
"border-width": 1,
|
751
|
-
"border-style": "solid",
|
752
|
-
"fill-color": "#FFFFFF"
|
753
|
-
},
|
754
|
-
"cx": 447.5,
|
755
|
-
"cy": 434.5,
|
756
|
-
"rx": 37.5,
|
757
|
-
"ry": 15.5
|
758
|
-
},
|
759
|
-
{
|
760
|
-
"id": "graphic_fcolor4",
|
761
|
-
"type": "rect",
|
762
|
-
"display": true,
|
763
|
-
"description": "",
|
764
|
-
"x": 371,
|
765
|
-
"y": 427.8,
|
766
|
-
"width": 73,
|
767
|
-
"height": 35.2,
|
768
|
-
"style": {
|
769
|
-
"border-color": "#000000",
|
770
|
-
"border-width": 1,
|
771
|
-
"border-style": "solid",
|
772
|
-
"fill-color": "none"
|
773
|
-
},
|
774
|
-
"border-radius": 0
|
775
|
-
},
|
776
|
-
{
|
777
|
-
"id": "",
|
778
|
-
"type": "text",
|
779
|
-
"display": true,
|
780
|
-
"description": "",
|
781
|
-
"x": 20,
|
782
|
-
"y": 497,
|
783
|
-
"width": 374.1,
|
784
|
-
"height": 23,
|
785
|
-
"style": {
|
786
|
-
"font-family": [
|
787
|
-
"Helvetica"
|
788
|
-
],
|
789
|
-
"font-size": 20,
|
790
|
-
"color": "#000000",
|
791
|
-
"text-align": "left",
|
792
|
-
"vertical-align": "top",
|
793
|
-
"line-height": "",
|
794
|
-
"line-height-ratio": "",
|
795
|
-
"letter-spacing": "",
|
796
|
-
"font-style": [
|
797
|
-
"underline"
|
798
|
-
]
|
799
|
-
},
|
800
|
-
"texts": [
|
801
|
-
"The Text Style"
|
802
|
-
]
|
803
|
-
},
|
804
|
-
{
|
805
|
-
"id": "",
|
806
|
-
"type": "text",
|
807
|
-
"display": true,
|
808
|
-
"description": "",
|
809
|
-
"x": 20,
|
810
|
-
"y": 527,
|
811
|
-
"width": 122,
|
812
|
-
"height": 14,
|
813
|
-
"style": {
|
814
|
-
"font-family": [
|
815
|
-
"Courier New"
|
816
|
-
],
|
817
|
-
"font-size": 12,
|
818
|
-
"color": "#000000",
|
819
|
-
"text-align": "left",
|
820
|
-
"vertical-align": "top",
|
821
|
-
"line-height": "",
|
822
|
-
"line-height-ratio": "",
|
823
|
-
"letter-spacing": "",
|
824
|
-
"font-style": []
|
825
|
-
},
|
826
|
-
"texts": [
|
827
|
-
"Bold Style:"
|
828
|
-
]
|
829
|
-
},
|
830
|
-
{
|
831
|
-
"id": "text_b1",
|
832
|
-
"type": "text",
|
833
|
-
"display": true,
|
834
|
-
"description": "",
|
835
|
-
"x": 20,
|
836
|
-
"y": 549.2,
|
837
|
-
"width": 131,
|
838
|
-
"height": 15,
|
839
|
-
"style": {
|
840
|
-
"font-family": [
|
841
|
-
"Helvetica"
|
842
|
-
],
|
843
|
-
"font-size": 12,
|
844
|
-
"color": "#000000",
|
845
|
-
"text-align": "left",
|
846
|
-
"vertical-align": "top",
|
847
|
-
"line-height": "",
|
848
|
-
"line-height-ratio": "",
|
849
|
-
"letter-spacing": "",
|
850
|
-
"font-style": []
|
851
|
-
},
|
852
|
-
"texts": [
|
853
|
-
"To bold from normal."
|
854
|
-
]
|
855
|
-
},
|
856
|
-
{
|
857
|
-
"id": "text_b2",
|
858
|
-
"type": "text",
|
859
|
-
"display": true,
|
860
|
-
"description": "",
|
861
|
-
"x": 20,
|
862
|
-
"y": 567,
|
863
|
-
"width": 144,
|
864
|
-
"height": 15,
|
865
|
-
"style": {
|
866
|
-
"font-family": [
|
867
|
-
"Helvetica"
|
868
|
-
],
|
869
|
-
"font-size": 12,
|
870
|
-
"color": "#000000",
|
871
|
-
"text-align": "left",
|
872
|
-
"vertical-align": "top",
|
873
|
-
"line-height": "",
|
874
|
-
"line-height-ratio": "",
|
875
|
-
"letter-spacing": "",
|
876
|
-
"font-style": [
|
877
|
-
"bold"
|
878
|
-
]
|
879
|
-
},
|
880
|
-
"texts": [
|
881
|
-
"To normal from bold."
|
882
|
-
]
|
883
|
-
},
|
884
|
-
{
|
885
|
-
"id": "",
|
886
|
-
"type": "text",
|
887
|
-
"display": true,
|
888
|
-
"description": "",
|
889
|
-
"x": 150,
|
890
|
-
"y": 527,
|
891
|
-
"width": 122,
|
892
|
-
"height": 14,
|
893
|
-
"style": {
|
894
|
-
"font-family": [
|
895
|
-
"Courier New"
|
896
|
-
],
|
897
|
-
"font-size": 12,
|
898
|
-
"color": "#000000",
|
899
|
-
"text-align": "left",
|
900
|
-
"vertical-align": "top",
|
901
|
-
"line-height": "",
|
902
|
-
"line-height-ratio": "",
|
903
|
-
"letter-spacing": "",
|
904
|
-
"font-style": []
|
905
|
-
},
|
906
|
-
"texts": [
|
907
|
-
"Italic Style:"
|
908
|
-
]
|
909
|
-
},
|
910
|
-
{
|
911
|
-
"id": "text_i1",
|
912
|
-
"type": "text",
|
913
|
-
"display": true,
|
914
|
-
"description": "",
|
915
|
-
"x": 150,
|
916
|
-
"y": 549.2,
|
917
|
-
"width": 132,
|
918
|
-
"height": 15,
|
919
|
-
"style": {
|
920
|
-
"font-family": [
|
921
|
-
"Helvetica"
|
922
|
-
],
|
923
|
-
"font-size": 12,
|
924
|
-
"color": "#000000",
|
925
|
-
"text-align": "left",
|
926
|
-
"vertical-align": "top",
|
927
|
-
"line-height": "",
|
928
|
-
"line-height-ratio": "",
|
929
|
-
"letter-spacing": "",
|
930
|
-
"font-style": []
|
931
|
-
},
|
932
|
-
"texts": [
|
933
|
-
"To italic from normal."
|
934
|
-
]
|
935
|
-
},
|
936
|
-
{
|
937
|
-
"id": "text_i2",
|
938
|
-
"type": "text",
|
939
|
-
"display": true,
|
940
|
-
"description": "",
|
941
|
-
"x": 150,
|
942
|
-
"y": 567,
|
943
|
-
"width": 146,
|
944
|
-
"height": 15,
|
945
|
-
"style": {
|
946
|
-
"font-family": [
|
947
|
-
"Helvetica"
|
948
|
-
],
|
949
|
-
"font-size": 12,
|
950
|
-
"color": "#000000",
|
951
|
-
"text-align": "left",
|
952
|
-
"vertical-align": "top",
|
953
|
-
"line-height": "",
|
954
|
-
"line-height-ratio": "",
|
955
|
-
"letter-spacing": "",
|
956
|
-
"font-style": [
|
957
|
-
"italic"
|
958
|
-
]
|
959
|
-
},
|
960
|
-
"texts": [
|
961
|
-
"To normal from italic."
|
962
|
-
]
|
963
|
-
},
|
964
|
-
{
|
965
|
-
"id": "",
|
966
|
-
"type": "text",
|
967
|
-
"display": true,
|
968
|
-
"description": "",
|
969
|
-
"x": 280,
|
970
|
-
"y": 527,
|
971
|
-
"width": 122,
|
972
|
-
"height": 14,
|
973
|
-
"style": {
|
974
|
-
"font-family": [
|
975
|
-
"Courier New"
|
976
|
-
],
|
977
|
-
"font-size": 12,
|
978
|
-
"color": "#000000",
|
979
|
-
"text-align": "left",
|
980
|
-
"vertical-align": "top",
|
981
|
-
"line-height": "",
|
982
|
-
"line-height-ratio": "",
|
983
|
-
"letter-spacing": "",
|
984
|
-
"font-style": []
|
985
|
-
},
|
986
|
-
"texts": [
|
987
|
-
"Underline Style:"
|
988
|
-
]
|
989
|
-
},
|
990
|
-
{
|
991
|
-
"id": "text_u1",
|
992
|
-
"type": "text",
|
993
|
-
"display": true,
|
994
|
-
"description": "",
|
995
|
-
"x": 280,
|
996
|
-
"y": 549.2,
|
997
|
-
"width": 132,
|
998
|
-
"height": 15,
|
999
|
-
"style": {
|
1000
|
-
"font-family": [
|
1001
|
-
"Helvetica"
|
1002
|
-
],
|
1003
|
-
"font-size": 12,
|
1004
|
-
"color": "#000000",
|
1005
|
-
"text-align": "left",
|
1006
|
-
"vertical-align": "top",
|
1007
|
-
"line-height": "",
|
1008
|
-
"line-height-ratio": "",
|
1009
|
-
"letter-spacing": "",
|
1010
|
-
"font-style": []
|
1011
|
-
},
|
1012
|
-
"texts": [
|
1013
|
-
"To underline from none."
|
1014
|
-
]
|
1015
|
-
},
|
1016
|
-
{
|
1017
|
-
"id": "text_u2",
|
1018
|
-
"type": "text",
|
1019
|
-
"display": true,
|
1020
|
-
"description": "",
|
1021
|
-
"x": 280,
|
1022
|
-
"y": 567,
|
1023
|
-
"width": 146,
|
1024
|
-
"height": 15,
|
1025
|
-
"style": {
|
1026
|
-
"font-family": [
|
1027
|
-
"Helvetica"
|
1028
|
-
],
|
1029
|
-
"font-size": 12,
|
1030
|
-
"color": "#000000",
|
1031
|
-
"text-align": "left",
|
1032
|
-
"vertical-align": "top",
|
1033
|
-
"line-height": "",
|
1034
|
-
"line-height-ratio": "",
|
1035
|
-
"letter-spacing": "",
|
1036
|
-
"font-style": [
|
1037
|
-
"underline"
|
1038
|
-
]
|
1039
|
-
},
|
1040
|
-
"texts": [
|
1041
|
-
"To none from underline."
|
1042
|
-
]
|
1043
|
-
},
|
1044
|
-
{
|
1045
|
-
"id": "",
|
1046
|
-
"type": "text",
|
1047
|
-
"display": true,
|
1048
|
-
"description": "",
|
1049
|
-
"x": 425,
|
1050
|
-
"y": 527,
|
1051
|
-
"width": 136.8,
|
1052
|
-
"height": 14,
|
1053
|
-
"style": {
|
1054
|
-
"font-family": [
|
1055
|
-
"Courier New"
|
1056
|
-
],
|
1057
|
-
"font-size": 12,
|
1058
|
-
"color": "#000000",
|
1059
|
-
"text-align": "left",
|
1060
|
-
"vertical-align": "top",
|
1061
|
-
"line-height": "",
|
1062
|
-
"line-height-ratio": "",
|
1063
|
-
"letter-spacing": "",
|
1064
|
-
"font-style": []
|
1065
|
-
},
|
1066
|
-
"texts": [
|
1067
|
-
"Line-Through Style:"
|
1068
|
-
]
|
1069
|
-
},
|
1070
|
-
{
|
1071
|
-
"id": "text_l1",
|
1072
|
-
"type": "text",
|
1073
|
-
"display": true,
|
1074
|
-
"description": "",
|
1075
|
-
"x": 425,
|
1076
|
-
"y": 549.2,
|
1077
|
-
"width": 145,
|
1078
|
-
"height": 15,
|
1079
|
-
"style": {
|
1080
|
-
"font-family": [
|
1081
|
-
"Helvetica"
|
1082
|
-
],
|
1083
|
-
"font-size": 12,
|
1084
|
-
"color": "#000000",
|
1085
|
-
"text-align": "left",
|
1086
|
-
"vertical-align": "top",
|
1087
|
-
"line-height": "",
|
1088
|
-
"line-height-ratio": "",
|
1089
|
-
"letter-spacing": "",
|
1090
|
-
"font-style": []
|
1091
|
-
},
|
1092
|
-
"texts": [
|
1093
|
-
"To line-through from none."
|
1094
|
-
]
|
1095
|
-
},
|
1096
|
-
{
|
1097
|
-
"id": "text_l2",
|
1098
|
-
"type": "text",
|
1099
|
-
"display": true,
|
1100
|
-
"description": "",
|
1101
|
-
"x": 425,
|
1102
|
-
"y": 567,
|
1103
|
-
"width": 146,
|
1104
|
-
"height": 15,
|
1105
|
-
"style": {
|
1106
|
-
"font-family": [
|
1107
|
-
"Helvetica"
|
1108
|
-
],
|
1109
|
-
"font-size": 12,
|
1110
|
-
"color": "#000000",
|
1111
|
-
"text-align": "left",
|
1112
|
-
"vertical-align": "top",
|
1113
|
-
"line-height": "",
|
1114
|
-
"line-height-ratio": "",
|
1115
|
-
"letter-spacing": "",
|
1116
|
-
"font-style": [
|
1117
|
-
"linethrough"
|
1118
|
-
]
|
1119
|
-
},
|
1120
|
-
"texts": [
|
1121
|
-
"To none from line-through."
|
1122
|
-
]
|
1123
|
-
},
|
1124
|
-
{
|
1125
|
-
"id": "text_b3",
|
1126
|
-
"type": "text-block",
|
1127
|
-
"display": true,
|
1128
|
-
"description": "",
|
1129
|
-
"x": 20,
|
1130
|
-
"y": 586.2,
|
1131
|
-
"width": 119,
|
1132
|
-
"height": 14,
|
1133
|
-
"style": {
|
1134
|
-
"font-family": [
|
1135
|
-
"Helvetica"
|
1136
|
-
],
|
1137
|
-
"font-size": 12,
|
1138
|
-
"color": "#000000",
|
1139
|
-
"text-align": "left",
|
1140
|
-
"vertical-align": "top",
|
1141
|
-
"line-height": "",
|
1142
|
-
"line-height-ratio": "",
|
1143
|
-
"letter-spacing": "",
|
1144
|
-
"font-style": [],
|
1145
|
-
"overflow": "truncate",
|
1146
|
-
"word-wrap": "break-word"
|
1147
|
-
},
|
1148
|
-
"reference-id": "",
|
1149
|
-
"value": "",
|
1150
|
-
"multiple-line": false,
|
1151
|
-
"format": {
|
1152
|
-
"base": "",
|
1153
|
-
"type": ""
|
1154
|
-
}
|
1155
|
-
},
|
1156
|
-
{
|
1157
|
-
"id": "text_b4",
|
1158
|
-
"type": "text-block",
|
1159
|
-
"display": true,
|
1160
|
-
"description": "",
|
1161
|
-
"x": 20,
|
1162
|
-
"y": 606,
|
1163
|
-
"width": 119,
|
1164
|
-
"height": 14,
|
1165
|
-
"style": {
|
1166
|
-
"font-family": [
|
1167
|
-
"Helvetica"
|
1168
|
-
],
|
1169
|
-
"font-size": 12,
|
1170
|
-
"color": "#000000",
|
1171
|
-
"text-align": "left",
|
1172
|
-
"vertical-align": "top",
|
1173
|
-
"line-height": "",
|
1174
|
-
"line-height-ratio": "",
|
1175
|
-
"letter-spacing": "",
|
1176
|
-
"font-style": [
|
1177
|
-
"bold"
|
1178
|
-
],
|
1179
|
-
"overflow": "truncate",
|
1180
|
-
"word-wrap": "break-word"
|
1181
|
-
},
|
1182
|
-
"reference-id": "",
|
1183
|
-
"value": "",
|
1184
|
-
"multiple-line": false,
|
1185
|
-
"format": {
|
1186
|
-
"base": "",
|
1187
|
-
"type": ""
|
1188
|
-
}
|
1189
|
-
},
|
1190
|
-
{
|
1191
|
-
"id": "text_i3",
|
1192
|
-
"type": "text-block",
|
1193
|
-
"display": true,
|
1194
|
-
"description": "",
|
1195
|
-
"x": 150,
|
1196
|
-
"y": 586.2,
|
1197
|
-
"width": 119,
|
1198
|
-
"height": 14,
|
1199
|
-
"style": {
|
1200
|
-
"font-family": [
|
1201
|
-
"Helvetica"
|
1202
|
-
],
|
1203
|
-
"font-size": 12,
|
1204
|
-
"color": "#000000",
|
1205
|
-
"text-align": "left",
|
1206
|
-
"vertical-align": "top",
|
1207
|
-
"line-height": "",
|
1208
|
-
"line-height-ratio": "",
|
1209
|
-
"letter-spacing": "",
|
1210
|
-
"font-style": [],
|
1211
|
-
"overflow": "truncate",
|
1212
|
-
"word-wrap": "break-word"
|
1213
|
-
},
|
1214
|
-
"reference-id": "",
|
1215
|
-
"value": "",
|
1216
|
-
"multiple-line": false,
|
1217
|
-
"format": {
|
1218
|
-
"base": "",
|
1219
|
-
"type": ""
|
1220
|
-
}
|
1221
|
-
},
|
1222
|
-
{
|
1223
|
-
"id": "text_i4",
|
1224
|
-
"type": "text-block",
|
1225
|
-
"display": true,
|
1226
|
-
"description": "",
|
1227
|
-
"x": 150,
|
1228
|
-
"y": 606,
|
1229
|
-
"width": 119,
|
1230
|
-
"height": 14,
|
1231
|
-
"style": {
|
1232
|
-
"font-family": [
|
1233
|
-
"Helvetica"
|
1234
|
-
],
|
1235
|
-
"font-size": 12,
|
1236
|
-
"color": "#000000",
|
1237
|
-
"text-align": "left",
|
1238
|
-
"vertical-align": "top",
|
1239
|
-
"line-height": "",
|
1240
|
-
"line-height-ratio": "",
|
1241
|
-
"letter-spacing": "",
|
1242
|
-
"font-style": [
|
1243
|
-
"italic"
|
1244
|
-
],
|
1245
|
-
"overflow": "truncate",
|
1246
|
-
"word-wrap": "break-word"
|
1247
|
-
},
|
1248
|
-
"reference-id": "",
|
1249
|
-
"value": "",
|
1250
|
-
"multiple-line": false,
|
1251
|
-
"format": {
|
1252
|
-
"base": "",
|
1253
|
-
"type": ""
|
1254
|
-
}
|
1255
|
-
},
|
1256
|
-
{
|
1257
|
-
"id": "text_u3",
|
1258
|
-
"type": "text-block",
|
1259
|
-
"display": true,
|
1260
|
-
"description": "",
|
1261
|
-
"x": 280,
|
1262
|
-
"y": 586.2,
|
1263
|
-
"width": 119,
|
1264
|
-
"height": 14,
|
1265
|
-
"style": {
|
1266
|
-
"font-family": [
|
1267
|
-
"Helvetica"
|
1268
|
-
],
|
1269
|
-
"font-size": 12,
|
1270
|
-
"color": "#000000",
|
1271
|
-
"text-align": "left",
|
1272
|
-
"vertical-align": "top",
|
1273
|
-
"line-height": "",
|
1274
|
-
"line-height-ratio": "",
|
1275
|
-
"letter-spacing": "",
|
1276
|
-
"font-style": [],
|
1277
|
-
"overflow": "truncate",
|
1278
|
-
"word-wrap": "break-word"
|
1279
|
-
},
|
1280
|
-
"reference-id": "",
|
1281
|
-
"value": "",
|
1282
|
-
"multiple-line": false,
|
1283
|
-
"format": {
|
1284
|
-
"base": "",
|
1285
|
-
"type": ""
|
1286
|
-
}
|
1287
|
-
},
|
1288
|
-
{
|
1289
|
-
"id": "text_u4",
|
1290
|
-
"type": "text-block",
|
1291
|
-
"display": true,
|
1292
|
-
"description": "",
|
1293
|
-
"x": 280,
|
1294
|
-
"y": 606,
|
1295
|
-
"width": 119,
|
1296
|
-
"height": 14,
|
1297
|
-
"style": {
|
1298
|
-
"font-family": [
|
1299
|
-
"Helvetica"
|
1300
|
-
],
|
1301
|
-
"font-size": 12,
|
1302
|
-
"color": "#000000",
|
1303
|
-
"text-align": "left",
|
1304
|
-
"vertical-align": "top",
|
1305
|
-
"line-height": "",
|
1306
|
-
"line-height-ratio": "",
|
1307
|
-
"letter-spacing": "",
|
1308
|
-
"font-style": [
|
1309
|
-
"underline"
|
1310
|
-
],
|
1311
|
-
"overflow": "truncate",
|
1312
|
-
"word-wrap": "break-word"
|
1313
|
-
},
|
1314
|
-
"reference-id": "",
|
1315
|
-
"value": "",
|
1316
|
-
"multiple-line": false,
|
1317
|
-
"format": {
|
1318
|
-
"base": "",
|
1319
|
-
"type": ""
|
1320
|
-
}
|
1321
|
-
},
|
1322
|
-
{
|
1323
|
-
"id": "text_l3",
|
1324
|
-
"type": "text-block",
|
1325
|
-
"display": true,
|
1326
|
-
"description": "",
|
1327
|
-
"x": 425,
|
1328
|
-
"y": 586.2,
|
1329
|
-
"width": 119,
|
1330
|
-
"height": 14,
|
1331
|
-
"style": {
|
1332
|
-
"font-family": [
|
1333
|
-
"Helvetica"
|
1334
|
-
],
|
1335
|
-
"font-size": 12,
|
1336
|
-
"color": "#000000",
|
1337
|
-
"text-align": "left",
|
1338
|
-
"vertical-align": "top",
|
1339
|
-
"line-height": "",
|
1340
|
-
"line-height-ratio": "",
|
1341
|
-
"letter-spacing": "",
|
1342
|
-
"font-style": [],
|
1343
|
-
"overflow": "truncate",
|
1344
|
-
"word-wrap": "break-word"
|
1345
|
-
},
|
1346
|
-
"reference-id": "",
|
1347
|
-
"value": "",
|
1348
|
-
"multiple-line": false,
|
1349
|
-
"format": {
|
1350
|
-
"base": "",
|
1351
|
-
"type": ""
|
1352
|
-
}
|
1353
|
-
},
|
1354
|
-
{
|
1355
|
-
"id": "text_l4",
|
1356
|
-
"type": "text-block",
|
1357
|
-
"display": true,
|
1358
|
-
"description": "",
|
1359
|
-
"x": 425,
|
1360
|
-
"y": 606,
|
1361
|
-
"width": 119,
|
1362
|
-
"height": 14,
|
1363
|
-
"style": {
|
1364
|
-
"font-family": [
|
1365
|
-
"Helvetica"
|
1366
|
-
],
|
1367
|
-
"font-size": 12,
|
1368
|
-
"color": "#000000",
|
1369
|
-
"text-align": "left",
|
1370
|
-
"vertical-align": "top",
|
1371
|
-
"line-height": "",
|
1372
|
-
"line-height-ratio": "",
|
1373
|
-
"letter-spacing": "",
|
1374
|
-
"font-style": [
|
1375
|
-
"linethrough"
|
1376
|
-
],
|
1377
|
-
"overflow": "truncate",
|
1378
|
-
"word-wrap": "break-word"
|
1379
|
-
},
|
1380
|
-
"reference-id": "",
|
1381
|
-
"value": "",
|
1382
|
-
"multiple-line": false,
|
1383
|
-
"format": {
|
1384
|
-
"base": "",
|
1385
|
-
"type": ""
|
1386
|
-
}
|
1387
|
-
},
|
1388
|
-
{
|
1389
|
-
"id": "",
|
1390
|
-
"type": "text",
|
1391
|
-
"display": true,
|
1392
|
-
"description": "",
|
1393
|
-
"x": 20,
|
1394
|
-
"y": 637,
|
1395
|
-
"width": 223.1,
|
1396
|
-
"height": 14,
|
1397
|
-
"style": {
|
1398
|
-
"font-family": [
|
1399
|
-
"Courier New"
|
1400
|
-
],
|
1401
|
-
"font-size": 12,
|
1402
|
-
"color": "#000000",
|
1403
|
-
"text-align": "left",
|
1404
|
-
"vertical-align": "top",
|
1405
|
-
"line-height": "",
|
1406
|
-
"line-height-ratio": "",
|
1407
|
-
"letter-spacing": "",
|
1408
|
-
"font-style": []
|
1409
|
-
},
|
1410
|
-
"texts": [
|
1411
|
-
"Text Align: To right from left."
|
1412
|
-
]
|
1413
|
-
},
|
1414
|
-
{
|
1415
|
-
"id": "text_a1",
|
1416
|
-
"type": "text",
|
1417
|
-
"display": true,
|
1418
|
-
"description": "",
|
1419
|
-
"x": 20,
|
1420
|
-
"y": 659,
|
1421
|
-
"width": 155.1,
|
1422
|
-
"height": 23.2,
|
1423
|
-
"style": {
|
1424
|
-
"font-family": [
|
1425
|
-
"Helvetica"
|
1426
|
-
],
|
1427
|
-
"font-size": 12,
|
1428
|
-
"color": "#000000",
|
1429
|
-
"text-align": "left",
|
1430
|
-
"vertical-align": "top",
|
1431
|
-
"line-height": "",
|
1432
|
-
"line-height-ratio": "",
|
1433
|
-
"letter-spacing": "",
|
1434
|
-
"font-style": []
|
1435
|
-
},
|
1436
|
-
"texts": [
|
1437
|
-
"To right from left."
|
1438
|
-
]
|
1439
|
-
},
|
1440
|
-
{
|
1441
|
-
"id": "",
|
1442
|
-
"type": "rect",
|
1443
|
-
"display": true,
|
1444
|
-
"description": "",
|
1445
|
-
"x": 20,
|
1446
|
-
"y": 659,
|
1447
|
-
"width": 155.1,
|
1448
|
-
"height": 23.2,
|
1449
|
-
"style": {
|
1450
|
-
"border-color": "#000000",
|
1451
|
-
"border-width": 1,
|
1452
|
-
"border-style": "solid",
|
1453
|
-
"fill-color": "none"
|
1454
|
-
},
|
1455
|
-
"border-radius": 0
|
1456
|
-
},
|
1457
|
-
{
|
1458
|
-
"id": "text_a2",
|
1459
|
-
"type": "text-block",
|
1460
|
-
"display": true,
|
1461
|
-
"description": "",
|
1462
|
-
"x": 192.1,
|
1463
|
-
"y": 660.2,
|
1464
|
-
"width": 138,
|
1465
|
-
"height": 14,
|
1466
|
-
"style": {
|
1467
|
-
"font-family": [
|
1468
|
-
"Helvetica"
|
1469
|
-
],
|
1470
|
-
"font-size": 12,
|
1471
|
-
"color": "#000000",
|
1472
|
-
"text-align": "left",
|
1473
|
-
"vertical-align": "top",
|
1474
|
-
"line-height": "",
|
1475
|
-
"line-height-ratio": "",
|
1476
|
-
"letter-spacing": "",
|
1477
|
-
"font-style": [],
|
1478
|
-
"overflow": "truncate",
|
1479
|
-
"word-wrap": "break-word"
|
1480
|
-
},
|
1481
|
-
"reference-id": "",
|
1482
|
-
"value": "",
|
1483
|
-
"multiple-line": false,
|
1484
|
-
"format": {
|
1485
|
-
"base": "",
|
1486
|
-
"type": ""
|
1487
|
-
}
|
1488
|
-
},
|
1489
|
-
{
|
1490
|
-
"id": "text_a3",
|
1491
|
-
"type": "text-block",
|
1492
|
-
"display": true,
|
1493
|
-
"description": "日本語",
|
1494
|
-
"x": 344.1,
|
1495
|
-
"y": 660.2,
|
1496
|
-
"width": 153.1,
|
1497
|
-
"height": 44.1,
|
1498
|
-
"style": {
|
1499
|
-
"font-family": [
|
1500
|
-
"IPAMincho"
|
1501
|
-
],
|
1502
|
-
"font-size": 12,
|
1503
|
-
"color": "#000000",
|
1504
|
-
"text-align": "left",
|
1505
|
-
"vertical-align": "top",
|
1506
|
-
"line-height": "",
|
1507
|
-
"line-height-ratio": "",
|
1508
|
-
"letter-spacing": "",
|
1509
|
-
"font-style": [],
|
1510
|
-
"overflow": "truncate",
|
1511
|
-
"word-wrap": "break-word"
|
1512
|
-
},
|
1513
|
-
"reference-id": "",
|
1514
|
-
"value": "",
|
1515
|
-
"multiple-line": true,
|
1516
|
-
"format": {
|
1517
|
-
"base": "",
|
1518
|
-
"type": ""
|
1519
|
-
}
|
1520
|
-
},
|
1521
|
-
{
|
1522
|
-
"id": "",
|
1523
|
-
"type": "rect",
|
1524
|
-
"display": true,
|
1525
|
-
"description": "",
|
1526
|
-
"x": 192.1,
|
1527
|
-
"y": 660.2,
|
1528
|
-
"width": 138,
|
1529
|
-
"height": 22,
|
1530
|
-
"style": {
|
1531
|
-
"border-color": "#000000",
|
1532
|
-
"border-width": 1,
|
1533
|
-
"border-style": "solid",
|
1534
|
-
"fill-color": "none"
|
1535
|
-
},
|
1536
|
-
"border-radius": 0
|
1537
|
-
},
|
1538
|
-
{
|
1539
|
-
"id": "",
|
1540
|
-
"type": "rect",
|
1541
|
-
"display": true,
|
1542
|
-
"description": "",
|
1543
|
-
"x": 344.1,
|
1544
|
-
"y": 660.2,
|
1545
|
-
"width": 153.1,
|
1546
|
-
"height": 44.1,
|
1547
|
-
"style": {
|
1548
|
-
"border-color": "#000000",
|
1549
|
-
"border-width": 1,
|
1550
|
-
"border-style": "solid",
|
1551
|
-
"fill-color": "none"
|
1552
|
-
},
|
1553
|
-
"border-radius": 0
|
1554
|
-
},
|
1555
|
-
{
|
1556
|
-
"id": "",
|
1557
|
-
"type": "text",
|
1558
|
-
"display": true,
|
1559
|
-
"description": "",
|
1560
|
-
"x": 20,
|
1561
|
-
"y": 712,
|
1562
|
-
"width": 251.9,
|
1563
|
-
"height": 14,
|
1564
|
-
"style": {
|
1565
|
-
"font-family": [
|
1566
|
-
"Courier New"
|
1567
|
-
],
|
1568
|
-
"font-size": 12,
|
1569
|
-
"color": "#000000",
|
1570
|
-
"text-align": "left",
|
1571
|
-
"vertical-align": "top",
|
1572
|
-
"line-height": "",
|
1573
|
-
"line-height-ratio": "",
|
1574
|
-
"letter-spacing": "",
|
1575
|
-
"font-style": []
|
1576
|
-
},
|
1577
|
-
"texts": [
|
1578
|
-
"Vertical Align: To bottom from top."
|
1579
|
-
]
|
1580
|
-
},
|
1581
|
-
{
|
1582
|
-
"id": "text_va1",
|
1583
|
-
"type": "text",
|
1584
|
-
"display": true,
|
1585
|
-
"description": "",
|
1586
|
-
"x": 20,
|
1587
|
-
"y": 729,
|
1588
|
-
"width": 155.1,
|
1589
|
-
"height": 50.3,
|
1590
|
-
"style": {
|
1591
|
-
"font-family": [
|
1592
|
-
"Helvetica"
|
1593
|
-
],
|
1594
|
-
"font-size": 12,
|
1595
|
-
"color": "#000000",
|
1596
|
-
"text-align": "left",
|
1597
|
-
"vertical-align": "top",
|
1598
|
-
"line-height": "",
|
1599
|
-
"line-height-ratio": "",
|
1600
|
-
"letter-spacing": "",
|
1601
|
-
"font-style": []
|
1602
|
-
},
|
1603
|
-
"texts": [
|
1604
|
-
"To bottom from top."
|
1605
|
-
]
|
1606
|
-
},
|
1607
|
-
{
|
1608
|
-
"id": "",
|
1609
|
-
"type": "rect",
|
1610
|
-
"display": true,
|
1611
|
-
"description": "",
|
1612
|
-
"x": 20,
|
1613
|
-
"y": 729,
|
1614
|
-
"width": 155.1,
|
1615
|
-
"height": 50.3,
|
1616
|
-
"style": {
|
1617
|
-
"border-color": "#000000",
|
1618
|
-
"border-width": 1,
|
1619
|
-
"border-style": "solid",
|
1620
|
-
"fill-color": "none"
|
1621
|
-
},
|
1622
|
-
"border-radius": 0
|
1623
|
-
},
|
1624
|
-
{
|
1625
|
-
"id": "text_va2",
|
1626
|
-
"type": "text-block",
|
1627
|
-
"display": true,
|
1628
|
-
"description": "日本語",
|
1629
|
-
"x": 189,
|
1630
|
-
"y": 730,
|
1631
|
-
"width": 153.1,
|
1632
|
-
"height": 50.3,
|
1633
|
-
"style": {
|
1634
|
-
"font-family": [
|
1635
|
-
"IPAMincho"
|
1636
|
-
],
|
1637
|
-
"font-size": 12,
|
1638
|
-
"color": "#000000",
|
1639
|
-
"text-align": "left",
|
1640
|
-
"vertical-align": "top",
|
1641
|
-
"line-height": "",
|
1642
|
-
"line-height-ratio": "",
|
1643
|
-
"letter-spacing": "",
|
1644
|
-
"font-style": [],
|
1645
|
-
"overflow": "truncate",
|
1646
|
-
"word-wrap": "break-word"
|
1647
|
-
},
|
1648
|
-
"reference-id": "",
|
1649
|
-
"value": "",
|
1650
|
-
"multiple-line": true,
|
1651
|
-
"format": {
|
1652
|
-
"base": "",
|
1653
|
-
"type": ""
|
1654
|
-
}
|
1655
|
-
},
|
1656
|
-
{
|
1657
|
-
"id": "",
|
1658
|
-
"type": "rect",
|
1659
|
-
"display": true,
|
1660
|
-
"description": "",
|
1661
|
-
"x": 189,
|
1662
|
-
"y": 730,
|
1663
|
-
"width": 153.1,
|
1664
|
-
"height": 50.3,
|
1665
|
-
"style": {
|
1666
|
-
"border-color": "#000000",
|
1667
|
-
"border-width": 1,
|
1668
|
-
"border-style": "solid",
|
1669
|
-
"fill-color": "none"
|
1670
|
-
},
|
1671
|
-
"border-radius": 0
|
1672
|
-
},
|
1673
|
-
{
|
1674
|
-
"id": "",
|
1675
|
-
"type": "text",
|
1676
|
-
"display": true,
|
1677
|
-
"description": "",
|
1678
|
-
"x": 20,
|
1679
|
-
"y": 789,
|
1680
|
-
"width": 245,
|
1681
|
-
"height": 14,
|
1682
|
-
"style": {
|
1683
|
-
"font-family": [
|
1684
|
-
"Courier New"
|
1685
|
-
],
|
1686
|
-
"font-size": 12,
|
1687
|
-
"color": "#000000",
|
1688
|
-
"text-align": "left",
|
1689
|
-
"vertical-align": "top",
|
1690
|
-
"line-height": "",
|
1691
|
-
"line-height-ratio": "",
|
1692
|
-
"letter-spacing": "",
|
1693
|
-
"font-style": []
|
1694
|
-
},
|
1695
|
-
"texts": [
|
1696
|
-
"Text Color: To red from black."
|
1697
|
-
]
|
1698
|
-
},
|
1699
|
-
{
|
1700
|
-
"id": "text_color1",
|
1701
|
-
"type": "text",
|
1702
|
-
"display": true,
|
1703
|
-
"description": "",
|
1704
|
-
"x": 20,
|
1705
|
-
"y": 809,
|
1706
|
-
"width": 131,
|
1707
|
-
"height": 15,
|
1708
|
-
"style": {
|
1709
|
-
"font-family": [
|
1710
|
-
"Helvetica"
|
1711
|
-
],
|
1712
|
-
"font-size": 12,
|
1713
|
-
"color": "#000000",
|
1714
|
-
"text-align": "left",
|
1715
|
-
"vertical-align": "top",
|
1716
|
-
"line-height": "",
|
1717
|
-
"line-height-ratio": "",
|
1718
|
-
"letter-spacing": "",
|
1719
|
-
"font-style": []
|
1720
|
-
},
|
1721
|
-
"texts": [
|
1722
|
-
"To red from black."
|
1723
|
-
]
|
1724
|
-
},
|
1725
|
-
{
|
1726
|
-
"id": "text_color2",
|
1727
|
-
"type": "text-block",
|
1728
|
-
"display": true,
|
1729
|
-
"description": "日本語",
|
1730
|
-
"x": 136,
|
1731
|
-
"y": 808.1,
|
1732
|
-
"width": 119,
|
1733
|
-
"height": 12,
|
1734
|
-
"style": {
|
1735
|
-
"font-family": [
|
1736
|
-
"IPAMincho"
|
1737
|
-
],
|
1738
|
-
"font-size": 12,
|
1739
|
-
"color": "#000000",
|
1740
|
-
"text-align": "left",
|
1741
|
-
"vertical-align": "top",
|
1742
|
-
"line-height": "",
|
1743
|
-
"line-height-ratio": "",
|
1744
|
-
"letter-spacing": "",
|
1745
|
-
"font-style": [],
|
1746
|
-
"overflow": "truncate",
|
1747
|
-
"word-wrap": "break-word"
|
1748
|
-
},
|
1749
|
-
"reference-id": "",
|
1750
|
-
"value": "",
|
1751
|
-
"multiple-line": false,
|
1752
|
-
"format": {
|
1753
|
-
"base": "",
|
1754
|
-
"type": ""
|
1755
|
-
}
|
1756
|
-
},
|
1757
|
-
{
|
1758
|
-
"id": "title",
|
1759
|
-
"type": "text-block",
|
1760
|
-
"display": true,
|
1761
|
-
"description": "",
|
1762
|
-
"x": 183.1,
|
1763
|
-
"y": 22,
|
1764
|
-
"width": 208,
|
1765
|
-
"height": 19,
|
1766
|
-
"style": {
|
1767
|
-
"font-family": [
|
1768
|
-
"Times New Roman"
|
1769
|
-
],
|
1770
|
-
"font-size": 18,
|
1771
|
-
"color": "#000000",
|
1772
|
-
"text-align": "center",
|
1773
|
-
"vertical-align": "top",
|
1774
|
-
"line-height": "",
|
1775
|
-
"line-height-ratio": "",
|
1776
|
-
"letter-spacing": "",
|
1777
|
-
"font-style": [
|
1778
|
-
"bold",
|
1779
|
-
"underline"
|
1780
|
-
],
|
1781
|
-
"overflow": "truncate",
|
1782
|
-
"word-wrap": "break-word"
|
1783
|
-
},
|
1784
|
-
"reference-id": "",
|
1785
|
-
"value": "",
|
1786
|
-
"multiple-line": false,
|
1787
|
-
"format": {
|
1788
|
-
"base": "",
|
1789
|
-
"type": ""
|
1790
|
-
}
|
1791
|
-
},
|
1792
|
-
{
|
1793
|
-
"id": "basic_show6",
|
1794
|
-
"type": "image-block",
|
1795
|
-
"display": false,
|
1796
|
-
"description": "",
|
1797
|
-
"x": 387,
|
1798
|
-
"y": 87,
|
1799
|
-
"width": 74,
|
1800
|
-
"height": 58,
|
1801
|
-
"style": {
|
1802
|
-
"position-x": "left",
|
1803
|
-
"position-y": "top"
|
1804
|
-
}
|
1805
|
-
},
|
1806
|
-
{
|
1807
|
-
"id": "basic_hide6",
|
1808
|
-
"type": "image-block",
|
1809
|
-
"display": true,
|
1810
|
-
"description": "",
|
1811
|
-
"x": 387,
|
1812
|
-
"y": 162,
|
1813
|
-
"width": 74,
|
1814
|
-
"height": 58,
|
1815
|
-
"style": {
|
1816
|
-
"position-x": "left",
|
1817
|
-
"position-y": "top"
|
1818
|
-
}
|
1819
|
-
}
|
1820
|
-
],
|
1821
|
-
"state": {
|
1822
|
-
"layout-guides": []
|
1823
|
-
},
|
1824
|
-
"title": "Dynamic Style",
|
1825
|
-
"report": {
|
1826
|
-
"paper-type": "A4",
|
1827
|
-
"orientation": "portrait",
|
1828
|
-
"margin": [
|
1829
|
-
20,
|
1830
|
-
20,
|
1831
|
-
20,
|
1832
|
-
20
|
1833
|
-
]
|
1834
|
-
}
|
1835
|
-
}
|