diff --git a/docs/assets/examples/cellstyle/v2/main.go b/docs/assets/examples/cellstyle/v2/main.go index d6bc9b0a..a1dbd5fe 100644 --- a/docs/assets/examples/cellstyle/v2/main.go +++ b/docs/assets/examples/cellstyle/v2/main.go @@ -80,6 +80,26 @@ func GetMaroto() core.Maroto { BorderType: border.Bottom, BorderColor: &props.Color{0, 0, 200}, }, + { + BackgroundColor: &props.Color{220, 220, 220}, + BorderType: border.Left | border.Top, + BorderColor: &props.Color{0, 0, 200}, + }, + { + BackgroundColor: &props.Color{220, 220, 220}, + BorderType: border.Left | border.Right, + BorderColor: &props.Color{0, 0, 200}, + }, + { + BackgroundColor: &props.Color{220, 220, 220}, + BorderType: border.Top | border.Bottom, + BorderColor: &props.Color{0, 0, 200}, + }, + { + BackgroundColor: &props.Color{220, 220, 220}, + BorderType: border.Left | border.Right | border.Top, + BorderColor: &props.Color{0, 0, 200}, + }, } whiteText := props.Text{ diff --git a/internal/providers/gofpdf/cellwriter/cellwriter.go b/internal/providers/gofpdf/cellwriter/cellwriter.go index cf162b85..37c8ae82 100644 --- a/internal/providers/gofpdf/cellwriter/cellwriter.go +++ b/internal/providers/gofpdf/cellwriter/cellwriter.go @@ -36,7 +36,7 @@ func (c *cellWriter) Apply(width, height float64, config *entity.Config, prop *p bd = border.Full } - c.fpdf.CellFormat(width, height, "", string(bd), 0, "C", false, 0, "") + c.fpdf.CellFormat(width, height, "", bd.String(), 0, "C", false, 0, "") return } @@ -45,5 +45,5 @@ func (c *cellWriter) Apply(width, height float64, config *entity.Config, prop *p bd = border.Full } - c.fpdf.CellFormat(width, height, "", string(bd), 0, "C", prop.BackgroundColor != nil, 0, "") + c.fpdf.CellFormat(width, height, "", bd.String(), 0, "C", prop.BackgroundColor != nil, 0, "") } diff --git a/internal/providers/gofpdf/cellwriter/cellwriter_test.go b/internal/providers/gofpdf/cellwriter/cellwriter_test.go index 2b58a1f3..1ae2dbd1 100644 --- a/internal/providers/gofpdf/cellwriter/cellwriter_test.go +++ b/internal/providers/gofpdf/cellwriter/cellwriter_test.go @@ -47,7 +47,7 @@ func TestCellWriter_Apply(t *testing.T) { width := 100.0 height := 200.0 fpdf := mocks.NewFpdf(t) - fpdf.EXPECT().CellFormat(width, height, "", "1", 0, "C", false, 0, "") + fpdf.EXPECT().CellFormat(width, height, "", "LTRB", 0, "C", false, 0, "") sut := cellwriter.NewCellWriter(fpdf) @@ -83,7 +83,7 @@ func TestCellWriter_Apply(t *testing.T) { width := 100.0 height := 200.0 fpdf := mocks.NewFpdf(t) - fpdf.EXPECT().CellFormat(width, height, "", "1", 0, "C", true, 0, "") + fpdf.EXPECT().CellFormat(width, height, "", "LTRB", 0, "C", true, 0, "") sut := cellwriter.NewCellWriter(fpdf) diff --git a/pkg/consts/border/border.go b/pkg/consts/border/border.go index 114fe1d6..65c9f94f 100644 --- a/pkg/consts/border/border.go +++ b/pkg/consts/border/border.go @@ -2,24 +2,64 @@ package border // Type represents a border type. -type Type string +type Type int + +// None is the default border type. +const None Type = 0 const ( - // None is the default border type. - None Type = "" - // Full is a border type that borders all sides. - Full Type = "1" // Left is a border type that borders the left side. - Left Type = "L" + Left Type = 1 << iota // Top is a border type that borders the top side. - Top Type = "T" + Top // Right is a border type that borders the right side. - Right Type = "R" + Right // Bottom is a border type that borders the bottom side. - Bottom Type = "B" + Bottom + // Full is a border type that borders all sides. + Full = Left | Top | Right | Bottom ) // IsValid checks if the border type is valid. func (t Type) IsValid() bool { - return t == Full || t == Left || t == Top || t == Right || t == Bottom + return t > None && t <= Full +} + +// HasLeft checks if the border type includes left border. +func (t Type) HasLeft() bool { + return t&Left != 0 +} + +// HasTop checks if the border type includes top border. +func (t Type) HasTop() bool { + return t&Top != 0 +} + +// HasRight checks if the border type includes right border. +func (t Type) HasRight() bool { + return t&Right != 0 +} + +// HasBottom checks if the border type includes bottom border. +func (t Type) HasBottom() bool { + return t&Bottom != 0 +} + +// String returns the string representation of the border type. +func (t Type) String() string { + result := "" + if t.HasLeft() { + result += "L" + } + if t.HasTop() { + result += "T" + } + if t.HasRight() { + result += "R" + } + if t.HasBottom() { + result += "B" + } + + return result } diff --git a/pkg/consts/border/border_test.go b/pkg/consts/border/border_test.go index 5708458d..79c7ac6b 100644 --- a/pkg/consts/border/border_test.go +++ b/pkg/consts/border/border_test.go @@ -9,9 +9,9 @@ import ( ) func TestType_IsValid(t *testing.T) { - t.Run("When type is empty, should not be valid", func(t *testing.T) { + t.Run("When type is None, should not be valid", func(t *testing.T) { // Arrange - borderType := border.Type("") + borderType := border.None // Act & Assert assert.False(t, borderType.IsValid()) @@ -52,3 +52,132 @@ func TestType_IsValid(t *testing.T) { assert.True(t, borderType.IsValid()) }) } + +func TestType_HasBorders(t *testing.T) { + t.Run("When type is None, should not have any border", func(t *testing.T) { + // Arrange + borderType := border.None + + // Act & Assert + assert.False(t, borderType.HasLeft()) + assert.False(t, borderType.HasTop()) + assert.False(t, borderType.HasRight()) + assert.False(t, borderType.HasBottom()) + }) + + t.Run("When type is Full, should have all borders", func(t *testing.T) { + // Arrange + borderType := border.Full + + // Act & Assert + assert.True(t, borderType.HasLeft()) + assert.True(t, borderType.HasTop()) + assert.True(t, borderType.HasRight()) + assert.True(t, borderType.HasBottom()) + }) + + t.Run("When type is Left, should have only left border", func(t *testing.T) { + // Arrange + borderType := border.Left + + // Act & Assert + assert.True(t, borderType.HasLeft()) + assert.False(t, borderType.HasTop()) + assert.False(t, borderType.HasRight()) + assert.False(t, borderType.HasBottom()) + }) + + t.Run("When type is combined (Left|Top), should have left and top borders", func(t *testing.T) { + // Arrange + borderType := border.Left | border.Top + + // Act & Assert + assert.True(t, borderType.HasLeft()) + assert.True(t, borderType.HasTop()) + assert.False(t, borderType.HasRight()) + assert.False(t, borderType.HasBottom()) + }) + + t.Run("When type is combined (Left|Right), should have left and right borders", func(t *testing.T) { + // Arrange + borderType := border.Left | border.Right + + // Act & Assert + assert.True(t, borderType.HasLeft()) + assert.False(t, borderType.HasTop()) + assert.True(t, borderType.HasRight()) + assert.False(t, borderType.HasBottom()) + }) + + t.Run("When type is combined (Top|Bottom), should have top and bottom borders", func(t *testing.T) { + // Arrange + borderType := border.Top | border.Bottom + + // Act & Assert + assert.False(t, borderType.HasLeft()) + assert.True(t, borderType.HasTop()) + assert.False(t, borderType.HasRight()) + assert.True(t, borderType.HasBottom()) + }) + + t.Run("When type is combined (Left|Top|Right), should have left, top and right borders", func(t *testing.T) { + // Arrange + borderType := border.Left | border.Top | border.Right + + // Act & Assert + assert.True(t, borderType.HasLeft()) + assert.True(t, borderType.HasTop()) + assert.True(t, borderType.HasRight()) + assert.False(t, borderType.HasBottom()) + }) +} + +func TestType_String(t *testing.T) { + t.Run("When type is None, should return empty string", func(t *testing.T) { + // Arrange + borderType := border.None + + // Act & Assert + assert.Equal(t, "", borderType.String()) + }) + + t.Run("When type is Full, should return 'LTRB'", func(t *testing.T) { + // Arrange + borderType := border.Full + + // Act & Assert + assert.Equal(t, "LTRB", borderType.String()) + }) + + t.Run("When type is Left, should return 'L'", func(t *testing.T) { + // Arrange + borderType := border.Left + + // Act & Assert + assert.Equal(t, "L", borderType.String()) + }) + + t.Run("When type is combined (Left|Top), should return 'LT'", func(t *testing.T) { + // Arrange + borderType := border.Left | border.Top + + // Act & Assert + assert.Equal(t, "LT", borderType.String()) + }) + + t.Run("When type is combined (Left|Right), should return 'LR'", func(t *testing.T) { + // Arrange + borderType := border.Left | border.Right + + // Act & Assert + assert.Equal(t, "LR", borderType.String()) + }) + + t.Run("When type is combined (Left|Top|Right), should return 'LTR'", func(t *testing.T) { + // Arrange + borderType := border.Left | border.Top | border.Right + + // Act & Assert + assert.Equal(t, "LTR", borderType.String()) + }) +} diff --git a/pkg/props/cell.go b/pkg/props/cell.go index 532bddd0..6b8e3668 100644 --- a/pkg/props/cell.go +++ b/pkg/props/cell.go @@ -33,7 +33,7 @@ func (c *Cell) ToMap() map[string]interface{} { m := make(map[string]interface{}) - if c.BorderType != "" { + if c.BorderType != border.None { m["prop_border_type"] = c.BorderType } diff --git a/test/maroto/components/cols/new_with_props.json b/test/maroto/components/cols/new_with_props.json index d57ddb4c..209e0ea5 100755 --- a/test/maroto/components/cols/new_with_props.json +++ b/test/maroto/components/cols/new_with_props.json @@ -6,6 +6,6 @@ "prop_border_color": "RGB(200, 80, 60)", "prop_border_line_style": "dashed", "prop_border_thickness": 0.6, - "prop_border_type": "L" + "prop_border_type": 1 } } \ No newline at end of file diff --git a/test/maroto/components/list/build.json b/test/maroto/components/list/build.json index 43cb567d..60fd5ec2 100755 --- a/test/maroto/components/list/build.json +++ b/test/maroto/components/list/build.json @@ -35,7 +35,7 @@ "prop_border_color": "RGB(200, 80, 60)", "prop_border_line_style": "dashed", "prop_border_thickness": 0.6, - "prop_border_type": "L" + "prop_border_type": 1 }, "nodes": [ { @@ -94,7 +94,7 @@ "prop_border_color": "RGB(200, 80, 60)", "prop_border_line_style": "dashed", "prop_border_thickness": 0.6, - "prop_border_type": "L" + "prop_border_type": 1 }, "nodes": [ { @@ -153,7 +153,7 @@ "prop_border_color": "RGB(200, 80, 60)", "prop_border_line_style": "dashed", "prop_border_thickness": 0.6, - "prop_border_type": "L" + "prop_border_type": 1 }, "nodes": [ { @@ -212,7 +212,7 @@ "prop_border_color": "RGB(200, 80, 60)", "prop_border_line_style": "dashed", "prop_border_thickness": 0.6, - "prop_border_type": "L" + "prop_border_type": 1 }, "nodes": [ { @@ -271,7 +271,7 @@ "prop_border_color": "RGB(200, 80, 60)", "prop_border_line_style": "dashed", "prop_border_thickness": 0.6, - "prop_border_type": "L" + "prop_border_type": 1 }, "nodes": [ { diff --git a/test/maroto/components/list/build_from_pointer.json b/test/maroto/components/list/build_from_pointer.json index 43cb567d..60fd5ec2 100755 --- a/test/maroto/components/list/build_from_pointer.json +++ b/test/maroto/components/list/build_from_pointer.json @@ -35,7 +35,7 @@ "prop_border_color": "RGB(200, 80, 60)", "prop_border_line_style": "dashed", "prop_border_thickness": 0.6, - "prop_border_type": "L" + "prop_border_type": 1 }, "nodes": [ { @@ -94,7 +94,7 @@ "prop_border_color": "RGB(200, 80, 60)", "prop_border_line_style": "dashed", "prop_border_thickness": 0.6, - "prop_border_type": "L" + "prop_border_type": 1 }, "nodes": [ { @@ -153,7 +153,7 @@ "prop_border_color": "RGB(200, 80, 60)", "prop_border_line_style": "dashed", "prop_border_thickness": 0.6, - "prop_border_type": "L" + "prop_border_type": 1 }, "nodes": [ { @@ -212,7 +212,7 @@ "prop_border_color": "RGB(200, 80, 60)", "prop_border_line_style": "dashed", "prop_border_thickness": 0.6, - "prop_border_type": "L" + "prop_border_type": 1 }, "nodes": [ { @@ -271,7 +271,7 @@ "prop_border_color": "RGB(200, 80, 60)", "prop_border_line_style": "dashed", "prop_border_thickness": 0.6, - "prop_border_type": "L" + "prop_border_type": 1 }, "nodes": [ { diff --git a/test/maroto/components/rows/new_col_with_prop.json b/test/maroto/components/rows/new_col_with_prop.json index 3b1f2cbb..d6da01f9 100755 --- a/test/maroto/components/rows/new_col_with_prop.json +++ b/test/maroto/components/rows/new_col_with_prop.json @@ -6,6 +6,6 @@ "prop_border_color": "RGB(200, 80, 60)", "prop_border_line_style": "dashed", "prop_border_thickness": 0.6, - "prop_border_type": "L" + "prop_border_type": 1 } } \ No newline at end of file diff --git a/test/maroto/examples/cellstyle.json b/test/maroto/examples/cellstyle.json index e72c837e..e2efb016 100755 --- a/test/maroto/examples/cellstyle.json +++ b/test/maroto/examples/cellstyle.json @@ -1,2732 +1,2733 @@ { - "type": "maroto", - "details": { - "chunk_workers": 1, - "config_margin_bottom": 20.0025, - "config_margin_left": 10, - "config_margin_right": 10, - "config_margin_top": 10, - "config_max_grid_sum": 12, - "config_provider_type": "gofpdf", - "generation_mode": "sequential", - "maroto_dimension_height": 297, - "maroto_dimension_width": 210, - "prop_font_color": "RGB(0, 0, 0)", - "prop_font_family": "arial", - "prop_font_size": 10 - }, - "nodes": [ - { - "type": "page", - "nodes": [ - { - "value": 10, - "type": "row", - "nodes": [ - { - "value": 4, - "type": "col", - "details": { - "prop_background_color": "RGB(80, 80, 80)", - "prop_border_color": "RGB(200, 0, 0)", - "prop_border_line_style": "dashed", - "prop_border_thickness": 0.5, - "prop_border_type": "1" - }, - "nodes": [ - { - "value": "string", - "type": "text", - "details": { - "prop_align": "C", - "prop_breakline_strategy": "empty_space_strategy", - "prop_color": "RGB(255, 255, 255)", - "prop_font_family": "arial", - "prop_font_size": 12, - "prop_font_style": "B", - "prop_top": 2 - } - } - ] - }, - { - "value": 4, - "type": "col", - "details": { - "prop_background_color": "RGB(80, 80, 80)", - "prop_border_color": "RGB(200, 0, 0)", - "prop_border_line_style": "dashed", - "prop_border_thickness": 0.5, - "prop_border_type": "1" - }, - "nodes": [ - { - "value": "string", - "type": "text", - "details": { - "prop_align": "C", - "prop_breakline_strategy": "empty_space_strategy", - "prop_color": "RGB(255, 255, 255)", - "prop_font_family": "arial", - "prop_font_size": 12, - "prop_font_style": "B", - "prop_top": 2 - } - } - ] - }, - { - "value": 4, - "type": "col", - "details": { - "prop_background_color": "RGB(80, 80, 80)", - "prop_border_color": "RGB(200, 0, 0)", - "prop_border_line_style": "dashed", - "prop_border_thickness": 0.5, - "prop_border_type": "1" - }, - "nodes": [ - { - "value": "string", - "type": "text", - "details": { - "prop_align": "C", - "prop_breakline_strategy": "empty_space_strategy", - "prop_color": "RGB(255, 255, 255)", - "prop_font_family": "arial", - "prop_font_size": 12, - "prop_font_style": "B", - "prop_top": 2 - } - } - ] - } - ] - }, - { - "value": 10, - "type": "row", - "nodes": [ - { - "value": 0, - "type": "col", - "details": { - "is_max": true - } - } - ] - }, - { - "value": 10, - "type": "row", - "details": { - "prop_background_color": "RGB(220, 220, 220)", - "prop_border_color": "RGB(0, 0, 200)" - }, - "nodes": [ - { - "value": 4, - "type": "col", - "nodes": [ - { - "value": "string", - "type": "text", - "details": { - "prop_align": "C", - "prop_breakline_strategy": "empty_space_strategy", - "prop_color": "RGB(0, 0, 0)", - "prop_font_family": "arial", - "prop_font_size": 12, - "prop_font_style": "B", - "prop_top": 2 - } - } - ] - }, - { - "value": 4, - "type": "col", - "nodes": [ - { - "value": "string", - "type": "text", - "details": { - "prop_align": "C", - "prop_breakline_strategy": "empty_space_strategy", - "prop_color": "RGB(0, 0, 0)", - "prop_font_family": "arial", - "prop_font_size": 12, - "prop_font_style": "B", - "prop_top": 2 - } - } - ] - }, - { - "value": 4, - "type": "col", - "nodes": [ - { - "value": "string", - "type": "text", - "details": { - "prop_align": "C", - "prop_breakline_strategy": "empty_space_strategy", - "prop_color": "RGB(0, 0, 0)", - "prop_font_family": "arial", - "prop_font_size": 12, - "prop_font_style": "B", - "prop_top": 2 - } - } - ] - } - ] - }, - { - "value": 10, - "type": "row", - "nodes": [ - { - "value": 0, - "type": "col", - "details": { - "is_max": true - } - } - ] - }, - { - "value": 10, - "type": "row", - "nodes": [ - { - "value": 4, - "type": "col", - "details": { - "prop_background_color": "RGB(80, 80, 80)", - "prop_border_color": "RGB(200, 0, 0)", - "prop_border_line_style": "dashed", - "prop_border_thickness": 0.5, - "prop_border_type": "1" - }, - "nodes": [ - { - "value": "string", - "type": "text", - "details": { - "prop_align": "C", - "prop_breakline_strategy": "empty_space_strategy", - "prop_color": "RGB(255, 255, 255)", - "prop_font_family": "arial", - "prop_font_size": 12, - "prop_font_style": "B", - "prop_top": 2 - } - } - ] - }, - { - "value": 4, - "type": "col", - "details": { - "prop_background_color": "RGB(80, 80, 80)", - "prop_border_color": "RGB(200, 0, 0)", - "prop_border_line_style": "dashed", - "prop_border_thickness": 0.5, - "prop_border_type": "1" - }, - "nodes": [ - { - "value": "string", - "type": "text", - "details": { - "prop_align": "C", - "prop_breakline_strategy": "empty_space_strategy", - "prop_color": "RGB(255, 255, 255)", - "prop_font_family": "arial", - "prop_font_size": 12, - "prop_font_style": "B", - "prop_top": 2 - } - } - ] - }, - { - "value": 4, - "type": "col", - "details": { - "prop_background_color": "RGB(80, 80, 80)", - "prop_border_color": "RGB(200, 0, 0)", - "prop_border_line_style": "dashed", - "prop_border_thickness": 0.5, - "prop_border_type": "1" - }, - "nodes": [ - { - "value": "string", - "type": "text", - "details": { - "prop_align": "C", - "prop_breakline_strategy": "empty_space_strategy", - "prop_color": "RGB(255, 255, 255)", - "prop_font_family": "arial", - "prop_font_size": 12, - "prop_font_style": "B", - "prop_top": 2 - } - } - ] - } - ] - }, - { - "value": 10, - "type": "row", - "nodes": [ - { - "value": 0, - "type": "col", - "details": { - "is_max": true - } - } - ] - }, - { - "value": 10, - "type": "row", - "details": { - "prop_background_color": "RGB(220, 220, 220)", - "prop_border_color": "RGB(0, 0, 200)", - "prop_border_type": "1" - }, - "nodes": [ - { - "value": 4, - "type": "col", - "nodes": [ - { - "value": "string", - "type": "text", - "details": { - "prop_align": "C", - "prop_breakline_strategy": "empty_space_strategy", - "prop_color": "RGB(0, 0, 0)", - "prop_font_family": "arial", - "prop_font_size": 12, - "prop_font_style": "B", - "prop_top": 2 - } - } - ] - }, - { - "value": 4, - "type": "col", - "nodes": [ - { - "value": "string", - "type": "text", - "details": { - "prop_align": "C", - "prop_breakline_strategy": "empty_space_strategy", - "prop_color": "RGB(0, 0, 0)", - "prop_font_family": "arial", - "prop_font_size": 12, - "prop_font_style": "B", - "prop_top": 2 - } - } - ] - }, - { - "value": 4, - "type": "col", - "nodes": [ - { - "value": "string", - "type": "text", - "details": { - "prop_align": "C", - "prop_breakline_strategy": "empty_space_strategy", - "prop_color": "RGB(0, 0, 0)", - "prop_font_family": "arial", - "prop_font_size": 12, - "prop_font_style": "B", - "prop_top": 2 - } - } - ] - } - ] - }, - { - "value": 10, - "type": "row", - "nodes": [ - { - "value": 0, - "type": "col", - "details": { - "is_max": true - } - } - ] - }, - { - "value": 10, - "type": "row", - "nodes": [ - { - "value": 4, - "type": "col", - "details": { - "prop_background_color": "RGB(80, 80, 80)", - "prop_border_color": "RGB(200, 0, 0)", - "prop_border_line_style": "dashed", - "prop_border_thickness": 0.5, - "prop_border_type": "1" - }, - "nodes": [ - { - "value": "string", - "type": "text", - "details": { - "prop_align": "C", - "prop_breakline_strategy": "empty_space_strategy", - "prop_color": "RGB(255, 255, 255)", - "prop_font_family": "arial", - "prop_font_size": 12, - "prop_font_style": "B", - "prop_top": 2 - } - } - ] - }, - { - "value": 4, - "type": "col", - "details": { - "prop_background_color": "RGB(80, 80, 80)", - "prop_border_color": "RGB(200, 0, 0)", - "prop_border_line_style": "dashed", - "prop_border_thickness": 0.5, - "prop_border_type": "1" - }, - "nodes": [ - { - "value": "string", - "type": "text", - "details": { - "prop_align": "C", - "prop_breakline_strategy": "empty_space_strategy", - "prop_color": "RGB(255, 255, 255)", - "prop_font_family": "arial", - "prop_font_size": 12, - "prop_font_style": "B", - "prop_top": 2 - } - } - ] - }, - { - "value": 4, - "type": "col", - "details": { - "prop_background_color": "RGB(80, 80, 80)", - "prop_border_color": "RGB(200, 0, 0)", - "prop_border_line_style": "dashed", - "prop_border_thickness": 0.5, - "prop_border_type": "1" - }, - "nodes": [ - { - "value": "string", - "type": "text", - "details": { - "prop_align": "C", - "prop_breakline_strategy": "empty_space_strategy", - "prop_color": "RGB(255, 255, 255)", - "prop_font_family": "arial", - "prop_font_size": 12, - "prop_font_style": "B", - "prop_top": 2 - } - } - ] - } - ] - }, - { - "value": 10, - "type": "row", - "nodes": [ - { - "value": 0, - "type": "col", - "details": { - "is_max": true - } - } - ] - }, - { - "value": 10, - "type": "row", - "details": { - "prop_background_color": "RGB(220, 220, 220)", - "prop_border_color": "RGB(0, 0, 200)", - "prop_border_type": "L" - }, - "nodes": [ - { - "value": 4, - "type": "col", - "nodes": [ - { - "value": "string", - "type": "text", - "details": { - "prop_align": "C", - "prop_breakline_strategy": "empty_space_strategy", - "prop_color": "RGB(0, 0, 0)", - "prop_font_family": "arial", - "prop_font_size": 12, - "prop_font_style": "B", - "prop_top": 2 - } - } - ] - }, - { - "value": 4, - "type": "col", - "nodes": [ - { - "value": "string", - "type": "text", - "details": { - "prop_align": "C", - "prop_breakline_strategy": "empty_space_strategy", - "prop_color": "RGB(0, 0, 0)", - "prop_font_family": "arial", - "prop_font_size": 12, - "prop_font_style": "B", - "prop_top": 2 - } - } - ] - }, - { - "value": 4, - "type": "col", - "nodes": [ - { - "value": "string", - "type": "text", - "details": { - "prop_align": "C", - "prop_breakline_strategy": "empty_space_strategy", - "prop_color": "RGB(0, 0, 0)", - "prop_font_family": "arial", - "prop_font_size": 12, - "prop_font_style": "B", - "prop_top": 2 - } - } - ] - } - ] - }, - { - "value": 10, - "type": "row", - "nodes": [ - { - "value": 0, - "type": "col", - "details": { - "is_max": true - } - } - ] - }, - { - "value": 10, - "type": "row", - "nodes": [ - { - "value": 4, - "type": "col", - "details": { - "prop_background_color": "RGB(80, 80, 80)", - "prop_border_color": "RGB(200, 0, 0)", - "prop_border_line_style": "dashed", - "prop_border_thickness": 0.5, - "prop_border_type": "1" - }, - "nodes": [ - { - "value": "string", - "type": "text", - "details": { - "prop_align": "C", - "prop_breakline_strategy": "empty_space_strategy", - "prop_color": "RGB(255, 255, 255)", - "prop_font_family": "arial", - "prop_font_size": 12, - "prop_font_style": "B", - "prop_top": 2 - } - } - ] - }, - { - "value": 4, - "type": "col", - "details": { - "prop_background_color": "RGB(80, 80, 80)", - "prop_border_color": "RGB(200, 0, 0)", - "prop_border_line_style": "dashed", - "prop_border_thickness": 0.5, - "prop_border_type": "1" - }, - "nodes": [ - { - "value": "string", - "type": "text", - "details": { - "prop_align": "C", - "prop_breakline_strategy": "empty_space_strategy", - "prop_color": "RGB(255, 255, 255)", - "prop_font_family": "arial", - "prop_font_size": 12, - "prop_font_style": "B", - "prop_top": 2 - } - } - ] - }, - { - "value": 4, - "type": "col", - "details": { - "prop_background_color": "RGB(80, 80, 80)", - "prop_border_color": "RGB(200, 0, 0)", - "prop_border_line_style": "dashed", - "prop_border_thickness": 0.5, - "prop_border_type": "1" - }, - "nodes": [ - { - "value": "string", - "type": "text", - "details": { - "prop_align": "C", - "prop_breakline_strategy": "empty_space_strategy", - "prop_color": "RGB(255, 255, 255)", - "prop_font_family": "arial", - "prop_font_size": 12, - "prop_font_style": "B", - "prop_top": 2 - } - } - ] - } - ] - }, - { - "value": 10, - "type": "row", - "nodes": [ - { - "value": 0, - "type": "col", - "details": { - "is_max": true - } - } - ] - }, - { - "value": 10, - "type": "row", - "details": { - "prop_background_color": "RGB(220, 220, 220)", - "prop_border_color": "RGB(0, 0, 200)", - "prop_border_type": "R" - }, - "nodes": [ - { - "value": 4, - "type": "col", - "nodes": [ - { - "value": "string", - "type": "text", - "details": { - "prop_align": "C", - "prop_breakline_strategy": "empty_space_strategy", - "prop_color": "RGB(0, 0, 0)", - "prop_font_family": "arial", - "prop_font_size": 12, - "prop_font_style": "B", - "prop_top": 2 - } - } - ] - }, - { - "value": 4, - "type": "col", - "nodes": [ - { - "value": "string", - "type": "text", - "details": { - "prop_align": "C", - "prop_breakline_strategy": "empty_space_strategy", - "prop_color": "RGB(0, 0, 0)", - "prop_font_family": "arial", - "prop_font_size": 12, - "prop_font_style": "B", - "prop_top": 2 - } - } - ] - }, - { - "value": 4, - "type": "col", - "nodes": [ - { - "value": "string", - "type": "text", - "details": { - "prop_align": "C", - "prop_breakline_strategy": "empty_space_strategy", - "prop_color": "RGB(0, 0, 0)", - "prop_font_family": "arial", - "prop_font_size": 12, - "prop_font_style": "B", - "prop_top": 2 - } - } - ] - } - ] - }, - { - "value": 10, - "type": "row", - "nodes": [ - { - "value": 0, - "type": "col", - "details": { - "is_max": true - } - } - ] - }, - { - "value": 10, - "type": "row", - "nodes": [ - { - "value": 4, - "type": "col", - "details": { - "prop_background_color": "RGB(80, 80, 80)", - "prop_border_color": "RGB(200, 0, 0)", - "prop_border_line_style": "dashed", - "prop_border_thickness": 0.5, - "prop_border_type": "1" - }, - "nodes": [ - { - "value": "string", - "type": "text", - "details": { - "prop_align": "C", - "prop_breakline_strategy": "empty_space_strategy", - "prop_color": "RGB(255, 255, 255)", - "prop_font_family": "arial", - "prop_font_size": 12, - "prop_font_style": "B", - "prop_top": 2 - } - } - ] - }, - { - "value": 4, - "type": "col", - "details": { - "prop_background_color": "RGB(80, 80, 80)", - "prop_border_color": "RGB(200, 0, 0)", - "prop_border_line_style": "dashed", - "prop_border_thickness": 0.5, - "prop_border_type": "1" - }, - "nodes": [ - { - "value": "string", - "type": "text", - "details": { - "prop_align": "C", - "prop_breakline_strategy": "empty_space_strategy", - "prop_color": "RGB(255, 255, 255)", - "prop_font_family": "arial", - "prop_font_size": 12, - "prop_font_style": "B", - "prop_top": 2 - } - } - ] - }, - { - "value": 4, - "type": "col", - "details": { - "prop_background_color": "RGB(80, 80, 80)", - "prop_border_color": "RGB(200, 0, 0)", - "prop_border_line_style": "dashed", - "prop_border_thickness": 0.5, - "prop_border_type": "1" - }, - "nodes": [ - { - "value": "string", - "type": "text", - "details": { - "prop_align": "C", - "prop_breakline_strategy": "empty_space_strategy", - "prop_color": "RGB(255, 255, 255)", - "prop_font_family": "arial", - "prop_font_size": 12, - "prop_font_style": "B", - "prop_top": 2 - } - } - ] - } - ] - }, - { - "value": 10, - "type": "row", - "nodes": [ - { - "value": 0, - "type": "col", - "details": { - "is_max": true - } - } - ] - }, - { - "value": 10, - "type": "row", - "details": { - "prop_background_color": "RGB(220, 220, 220)", - "prop_border_color": "RGB(0, 0, 200)", - "prop_border_type": "T" - }, - "nodes": [ - { - "value": 4, - "type": "col", - "nodes": [ - { - "value": "string", - "type": "text", - "details": { - "prop_align": "C", - "prop_breakline_strategy": "empty_space_strategy", - "prop_color": "RGB(0, 0, 0)", - "prop_font_family": "arial", - "prop_font_size": 12, - "prop_font_style": "B", - "prop_top": 2 - } - } - ] - }, - { - "value": 4, - "type": "col", - "nodes": [ - { - "value": "string", - "type": "text", - "details": { - "prop_align": "C", - "prop_breakline_strategy": "empty_space_strategy", - "prop_color": "RGB(0, 0, 0)", - "prop_font_family": "arial", - "prop_font_size": 12, - "prop_font_style": "B", - "prop_top": 2 - } - } - ] - }, - { - "value": 4, - "type": "col", - "nodes": [ - { - "value": "string", - "type": "text", - "details": { - "prop_align": "C", - "prop_breakline_strategy": "empty_space_strategy", - "prop_color": "RGB(0, 0, 0)", - "prop_font_family": "arial", - "prop_font_size": 12, - "prop_font_style": "B", - "prop_top": 2 - } - } - ] - } - ] - }, - { - "value": 10, - "type": "row", - "nodes": [ - { - "value": 0, - "type": "col", - "details": { - "is_max": true - } - } - ] - }, - { - "value": 10, - "type": "row", - "nodes": [ - { - "value": 4, - "type": "col", - "details": { - "prop_background_color": "RGB(80, 80, 80)", - "prop_border_color": "RGB(200, 0, 0)", - "prop_border_line_style": "dashed", - "prop_border_thickness": 0.5, - "prop_border_type": "1" - }, - "nodes": [ - { - "value": "string", - "type": "text", - "details": { - "prop_align": "C", - "prop_breakline_strategy": "empty_space_strategy", - "prop_color": "RGB(255, 255, 255)", - "prop_font_family": "arial", - "prop_font_size": 12, - "prop_font_style": "B", - "prop_top": 2 - } - } - ] - }, - { - "value": 4, - "type": "col", - "details": { - "prop_background_color": "RGB(80, 80, 80)", - "prop_border_color": "RGB(200, 0, 0)", - "prop_border_line_style": "dashed", - "prop_border_thickness": 0.5, - "prop_border_type": "1" - }, - "nodes": [ - { - "value": "string", - "type": "text", - "details": { - "prop_align": "C", - "prop_breakline_strategy": "empty_space_strategy", - "prop_color": "RGB(255, 255, 255)", - "prop_font_family": "arial", - "prop_font_size": 12, - "prop_font_style": "B", - "prop_top": 2 - } - } - ] - }, - { - "value": 4, - "type": "col", - "details": { - "prop_background_color": "RGB(80, 80, 80)", - "prop_border_color": "RGB(200, 0, 0)", - "prop_border_line_style": "dashed", - "prop_border_thickness": 0.5, - "prop_border_type": "1" - }, - "nodes": [ - { - "value": "string", - "type": "text", - "details": { - "prop_align": "C", - "prop_breakline_strategy": "empty_space_strategy", - "prop_color": "RGB(255, 255, 255)", - "prop_font_family": "arial", - "prop_font_size": 12, - "prop_font_style": "B", - "prop_top": 2 - } - } - ] - } - ] - }, - { - "value": 10, - "type": "row", - "nodes": [ - { - "value": 0, - "type": "col", - "details": { - "is_max": true - } - } - ] - }, - { - "value": 10, - "type": "row", - "details": { - "prop_background_color": "RGB(220, 220, 220)", - "prop_border_color": "RGB(0, 0, 200)", - "prop_border_type": "B" - }, - "nodes": [ - { - "value": 4, - "type": "col", - "nodes": [ - { - "value": "string", - "type": "text", - "details": { - "prop_align": "C", - "prop_breakline_strategy": "empty_space_strategy", - "prop_color": "RGB(0, 0, 0)", - "prop_font_family": "arial", - "prop_font_size": 12, - "prop_font_style": "B", - "prop_top": 2 - } - } - ] - }, - { - "value": 4, - "type": "col", - "nodes": [ - { - "value": "string", - "type": "text", - "details": { - "prop_align": "C", - "prop_breakline_strategy": "empty_space_strategy", - "prop_color": "RGB(0, 0, 0)", - "prop_font_family": "arial", - "prop_font_size": 12, - "prop_font_style": "B", - "prop_top": 2 - } - } - ] - }, - { - "value": 4, - "type": "col", - "nodes": [ - { - "value": "string", - "type": "text", - "details": { - "prop_align": "C", - "prop_breakline_strategy": "empty_space_strategy", - "prop_color": "RGB(0, 0, 0)", - "prop_font_family": "arial", - "prop_font_size": 12, - "prop_font_style": "B", - "prop_top": 2 - } - } - ] - } - ] - }, - { - "value": 10, - "type": "row", - "nodes": [ - { - "value": 0, - "type": "col", - "details": { - "is_max": true - } - } - ] - }, - { - "value": 10, - "type": "row", - "nodes": [ - { - "value": 4, - "type": "col", - "details": { - "prop_background_color": "RGB(80, 80, 80)", - "prop_border_color": "RGB(200, 0, 0)", - "prop_border_line_style": "dashed", - "prop_border_thickness": 0.5, - "prop_border_type": "1" - }, - "nodes": [ - { - "value": "string", - "type": "text", - "details": { - "prop_align": "C", - "prop_breakline_strategy": "empty_space_strategy", - "prop_color": "RGB(255, 255, 255)", - "prop_font_family": "arial", - "prop_font_size": 12, - "prop_font_style": "B", - "prop_top": 2 - } - } - ] - }, - { - "value": 4, - "type": "col", - "details": { - "prop_background_color": "RGB(80, 80, 80)", - "prop_border_color": "RGB(200, 0, 0)", - "prop_border_line_style": "dashed", - "prop_border_thickness": 0.5, - "prop_border_type": "1" - }, - "nodes": [ - { - "value": "string", - "type": "text", - "details": { - "prop_align": "C", - "prop_breakline_strategy": "empty_space_strategy", - "prop_color": "RGB(255, 255, 255)", - "prop_font_family": "arial", - "prop_font_size": 12, - "prop_font_style": "B", - "prop_top": 2 - } - } - ] - }, - { - "value": 4, - "type": "col", - "details": { - "prop_background_color": "RGB(80, 80, 80)", - "prop_border_color": "RGB(200, 0, 0)", - "prop_border_line_style": "dashed", - "prop_border_thickness": 0.5, - "prop_border_type": "1" - }, - "nodes": [ - { - "value": "string", - "type": "text", - "details": { - "prop_align": "C", - "prop_breakline_strategy": "empty_space_strategy", - "prop_color": "RGB(255, 255, 255)", - "prop_font_family": "arial", - "prop_font_size": 12, - "prop_font_style": "B", - "prop_top": 2 - } - } - ] - } - ] - }, - { - "value": 10, - "type": "row", - "nodes": [ - { - "value": 0, - "type": "col", - "details": { - "is_max": true - } - } - ] - }, - { - "value": 6.9975, - "type": "row", - "nodes": [ - { - "value": 12, - "type": "col" - } - ] - } - ] - }, - { - "type": "page", - "nodes": [ - { - "value": 10, - "type": "row", - "details": { - "prop_background_color": "RGB(220, 220, 220)", - "prop_border_color": "RGB(0, 0, 200)" - }, - "nodes": [ - { - "value": 4, - "type": "col", - "nodes": [ - { - "value": "string", - "type": "text", - "details": { - "prop_align": "C", - "prop_breakline_strategy": "empty_space_strategy", - "prop_color": "RGB(0, 0, 0)", - "prop_font_family": "arial", - "prop_font_size": 12, - "prop_font_style": "B", - "prop_top": 2 - } - } - ] - }, - { - "value": 4, - "type": "col", - "nodes": [ - { - "value": "string", - "type": "text", - "details": { - "prop_align": "C", - "prop_breakline_strategy": "empty_space_strategy", - "prop_color": "RGB(0, 0, 0)", - "prop_font_family": "arial", - "prop_font_size": 12, - "prop_font_style": "B", - "prop_top": 2 - } - } - ] - }, - { - "value": 4, - "type": "col", - "nodes": [ - { - "value": "string", - "type": "text", - "details": { - "prop_align": "C", - "prop_breakline_strategy": "empty_space_strategy", - "prop_color": "RGB(0, 0, 0)", - "prop_font_family": "arial", - "prop_font_size": 12, - "prop_font_style": "B", - "prop_top": 2 - } - } - ] - } - ] - }, - { - "value": 10, - "type": "row", - "nodes": [ - { - "value": 0, - "type": "col", - "details": { - "is_max": true - } - } - ] - }, - { - "value": 10, - "type": "row", - "nodes": [ - { - "value": 4, - "type": "col", - "details": { - "prop_background_color": "RGB(80, 80, 80)", - "prop_border_color": "RGB(200, 0, 0)", - "prop_border_line_style": "dashed", - "prop_border_thickness": 0.5, - "prop_border_type": "1" - }, - "nodes": [ - { - "value": "string", - "type": "text", - "details": { - "prop_align": "C", - "prop_breakline_strategy": "empty_space_strategy", - "prop_color": "RGB(255, 255, 255)", - "prop_font_family": "arial", - "prop_font_size": 12, - "prop_font_style": "B", - "prop_top": 2 - } - } - ] - }, - { - "value": 4, - "type": "col", - "details": { - "prop_background_color": "RGB(80, 80, 80)", - "prop_border_color": "RGB(200, 0, 0)", - "prop_border_line_style": "dashed", - "prop_border_thickness": 0.5, - "prop_border_type": "1" - }, - "nodes": [ - { - "value": "string", - "type": "text", - "details": { - "prop_align": "C", - "prop_breakline_strategy": "empty_space_strategy", - "prop_color": "RGB(255, 255, 255)", - "prop_font_family": "arial", - "prop_font_size": 12, - "prop_font_style": "B", - "prop_top": 2 - } - } - ] - }, - { - "value": 4, - "type": "col", - "details": { - "prop_background_color": "RGB(80, 80, 80)", - "prop_border_color": "RGB(200, 0, 0)", - "prop_border_line_style": "dashed", - "prop_border_thickness": 0.5, - "prop_border_type": "1" - }, - "nodes": [ - { - "value": "string", - "type": "text", - "details": { - "prop_align": "C", - "prop_breakline_strategy": "empty_space_strategy", - "prop_color": "RGB(255, 255, 255)", - "prop_font_family": "arial", - "prop_font_size": 12, - "prop_font_style": "B", - "prop_top": 2 - } - } - ] - } - ] - }, - { - "value": 10, - "type": "row", - "nodes": [ - { - "value": 0, - "type": "col", - "details": { - "is_max": true - } - } - ] - }, - { - "value": 10, - "type": "row", - "details": { - "prop_background_color": "RGB(220, 220, 220)", - "prop_border_color": "RGB(0, 0, 200)", - "prop_border_type": "1" - }, - "nodes": [ - { - "value": 4, - "type": "col", - "nodes": [ - { - "value": "string", - "type": "text", - "details": { - "prop_align": "C", - "prop_breakline_strategy": "empty_space_strategy", - "prop_color": "RGB(0, 0, 0)", - "prop_font_family": "arial", - "prop_font_size": 12, - "prop_font_style": "B", - "prop_top": 2 - } - } - ] - }, - { - "value": 4, - "type": "col", - "nodes": [ - { - "value": "string", - "type": "text", - "details": { - "prop_align": "C", - "prop_breakline_strategy": "empty_space_strategy", - "prop_color": "RGB(0, 0, 0)", - "prop_font_family": "arial", - "prop_font_size": 12, - "prop_font_style": "B", - "prop_top": 2 - } - } - ] - }, - { - "value": 4, - "type": "col", - "nodes": [ - { - "value": "string", - "type": "text", - "details": { - "prop_align": "C", - "prop_breakline_strategy": "empty_space_strategy", - "prop_color": "RGB(0, 0, 0)", - "prop_font_family": "arial", - "prop_font_size": 12, - "prop_font_style": "B", - "prop_top": 2 - } - } - ] - } - ] - }, - { - "value": 10, - "type": "row", - "nodes": [ - { - "value": 0, - "type": "col", - "details": { - "is_max": true - } - } - ] - }, - { - "value": 10, - "type": "row", - "nodes": [ - { - "value": 4, - "type": "col", - "details": { - "prop_background_color": "RGB(80, 80, 80)", - "prop_border_color": "RGB(200, 0, 0)", - "prop_border_line_style": "dashed", - "prop_border_thickness": 0.5, - "prop_border_type": "1" - }, - "nodes": [ - { - "value": "string", - "type": "text", - "details": { - "prop_align": "C", - "prop_breakline_strategy": "empty_space_strategy", - "prop_color": "RGB(255, 255, 255)", - "prop_font_family": "arial", - "prop_font_size": 12, - "prop_font_style": "B", - "prop_top": 2 - } - } - ] - }, - { - "value": 4, - "type": "col", - "details": { - "prop_background_color": "RGB(80, 80, 80)", - "prop_border_color": "RGB(200, 0, 0)", - "prop_border_line_style": "dashed", - "prop_border_thickness": 0.5, - "prop_border_type": "1" - }, - "nodes": [ - { - "value": "string", - "type": "text", - "details": { - "prop_align": "C", - "prop_breakline_strategy": "empty_space_strategy", - "prop_color": "RGB(255, 255, 255)", - "prop_font_family": "arial", - "prop_font_size": 12, - "prop_font_style": "B", - "prop_top": 2 - } - } - ] - }, - { - "value": 4, - "type": "col", - "details": { - "prop_background_color": "RGB(80, 80, 80)", - "prop_border_color": "RGB(200, 0, 0)", - "prop_border_line_style": "dashed", - "prop_border_thickness": 0.5, - "prop_border_type": "1" - }, - "nodes": [ - { - "value": "string", - "type": "text", - "details": { - "prop_align": "C", - "prop_breakline_strategy": "empty_space_strategy", - "prop_color": "RGB(255, 255, 255)", - "prop_font_family": "arial", - "prop_font_size": 12, - "prop_font_style": "B", - "prop_top": 2 - } - } - ] - } - ] - }, - { - "value": 10, - "type": "row", - "nodes": [ - { - "value": 0, - "type": "col", - "details": { - "is_max": true - } - } - ] - }, - { - "value": 10, - "type": "row", - "details": { - "prop_background_color": "RGB(220, 220, 220)", - "prop_border_color": "RGB(0, 0, 200)", - "prop_border_type": "L" - }, - "nodes": [ - { - "value": 4, - "type": "col", - "nodes": [ - { - "value": "string", - "type": "text", - "details": { - "prop_align": "C", - "prop_breakline_strategy": "empty_space_strategy", - "prop_color": "RGB(0, 0, 0)", - "prop_font_family": "arial", - "prop_font_size": 12, - "prop_font_style": "B", - "prop_top": 2 - } - } - ] - }, - { - "value": 4, - "type": "col", - "nodes": [ - { - "value": "string", - "type": "text", - "details": { - "prop_align": "C", - "prop_breakline_strategy": "empty_space_strategy", - "prop_color": "RGB(0, 0, 0)", - "prop_font_family": "arial", - "prop_font_size": 12, - "prop_font_style": "B", - "prop_top": 2 - } - } - ] - }, - { - "value": 4, - "type": "col", - "nodes": [ - { - "value": "string", - "type": "text", - "details": { - "prop_align": "C", - "prop_breakline_strategy": "empty_space_strategy", - "prop_color": "RGB(0, 0, 0)", - "prop_font_family": "arial", - "prop_font_size": 12, - "prop_font_style": "B", - "prop_top": 2 - } - } - ] - } - ] - }, - { - "value": 10, - "type": "row", - "nodes": [ - { - "value": 0, - "type": "col", - "details": { - "is_max": true - } - } - ] - }, - { - "value": 10, - "type": "row", - "nodes": [ - { - "value": 4, - "type": "col", - "details": { - "prop_background_color": "RGB(80, 80, 80)", - "prop_border_color": "RGB(200, 0, 0)", - "prop_border_line_style": "dashed", - "prop_border_thickness": 0.5, - "prop_border_type": "1" - }, - "nodes": [ - { - "value": "string", - "type": "text", - "details": { - "prop_align": "C", - "prop_breakline_strategy": "empty_space_strategy", - "prop_color": "RGB(255, 255, 255)", - "prop_font_family": "arial", - "prop_font_size": 12, - "prop_font_style": "B", - "prop_top": 2 - } - } - ] - }, - { - "value": 4, - "type": "col", - "details": { - "prop_background_color": "RGB(80, 80, 80)", - "prop_border_color": "RGB(200, 0, 0)", - "prop_border_line_style": "dashed", - "prop_border_thickness": 0.5, - "prop_border_type": "1" - }, - "nodes": [ - { - "value": "string", - "type": "text", - "details": { - "prop_align": "C", - "prop_breakline_strategy": "empty_space_strategy", - "prop_color": "RGB(255, 255, 255)", - "prop_font_family": "arial", - "prop_font_size": 12, - "prop_font_style": "B", - "prop_top": 2 - } - } - ] - }, - { - "value": 4, - "type": "col", - "details": { - "prop_background_color": "RGB(80, 80, 80)", - "prop_border_color": "RGB(200, 0, 0)", - "prop_border_line_style": "dashed", - "prop_border_thickness": 0.5, - "prop_border_type": "1" - }, - "nodes": [ - { - "value": "string", - "type": "text", - "details": { - "prop_align": "C", - "prop_breakline_strategy": "empty_space_strategy", - "prop_color": "RGB(255, 255, 255)", - "prop_font_family": "arial", - "prop_font_size": 12, - "prop_font_style": "B", - "prop_top": 2 - } - } - ] - } - ] - }, - { - "value": 10, - "type": "row", - "nodes": [ - { - "value": 0, - "type": "col", - "details": { - "is_max": true - } - } - ] - }, - { - "value": 10, - "type": "row", - "details": { - "prop_background_color": "RGB(220, 220, 220)", - "prop_border_color": "RGB(0, 0, 200)", - "prop_border_type": "R" - }, - "nodes": [ - { - "value": 4, - "type": "col", - "nodes": [ - { - "value": "string", - "type": "text", - "details": { - "prop_align": "C", - "prop_breakline_strategy": "empty_space_strategy", - "prop_color": "RGB(0, 0, 0)", - "prop_font_family": "arial", - "prop_font_size": 12, - "prop_font_style": "B", - "prop_top": 2 - } - } - ] - }, - { - "value": 4, - "type": "col", - "nodes": [ - { - "value": "string", - "type": "text", - "details": { - "prop_align": "C", - "prop_breakline_strategy": "empty_space_strategy", - "prop_color": "RGB(0, 0, 0)", - "prop_font_family": "arial", - "prop_font_size": 12, - "prop_font_style": "B", - "prop_top": 2 - } - } - ] - }, - { - "value": 4, - "type": "col", - "nodes": [ - { - "value": "string", - "type": "text", - "details": { - "prop_align": "C", - "prop_breakline_strategy": "empty_space_strategy", - "prop_color": "RGB(0, 0, 0)", - "prop_font_family": "arial", - "prop_font_size": 12, - "prop_font_style": "B", - "prop_top": 2 - } - } - ] - } - ] - }, - { - "value": 10, - "type": "row", - "nodes": [ - { - "value": 0, - "type": "col", - "details": { - "is_max": true - } - } - ] - }, - { - "value": 10, - "type": "row", - "nodes": [ - { - "value": 4, - "type": "col", - "details": { - "prop_background_color": "RGB(80, 80, 80)", - "prop_border_color": "RGB(200, 0, 0)", - "prop_border_line_style": "dashed", - "prop_border_thickness": 0.5, - "prop_border_type": "1" - }, - "nodes": [ - { - "value": "string", - "type": "text", - "details": { - "prop_align": "C", - "prop_breakline_strategy": "empty_space_strategy", - "prop_color": "RGB(255, 255, 255)", - "prop_font_family": "arial", - "prop_font_size": 12, - "prop_font_style": "B", - "prop_top": 2 - } - } - ] - }, - { - "value": 4, - "type": "col", - "details": { - "prop_background_color": "RGB(80, 80, 80)", - "prop_border_color": "RGB(200, 0, 0)", - "prop_border_line_style": "dashed", - "prop_border_thickness": 0.5, - "prop_border_type": "1" - }, - "nodes": [ - { - "value": "string", - "type": "text", - "details": { - "prop_align": "C", - "prop_breakline_strategy": "empty_space_strategy", - "prop_color": "RGB(255, 255, 255)", - "prop_font_family": "arial", - "prop_font_size": 12, - "prop_font_style": "B", - "prop_top": 2 - } - } - ] - }, - { - "value": 4, - "type": "col", - "details": { - "prop_background_color": "RGB(80, 80, 80)", - "prop_border_color": "RGB(200, 0, 0)", - "prop_border_line_style": "dashed", - "prop_border_thickness": 0.5, - "prop_border_type": "1" - }, - "nodes": [ - { - "value": "string", - "type": "text", - "details": { - "prop_align": "C", - "prop_breakline_strategy": "empty_space_strategy", - "prop_color": "RGB(255, 255, 255)", - "prop_font_family": "arial", - "prop_font_size": 12, - "prop_font_style": "B", - "prop_top": 2 - } - } - ] - } - ] - }, - { - "value": 10, - "type": "row", - "nodes": [ - { - "value": 0, - "type": "col", - "details": { - "is_max": true - } - } - ] - }, - { - "value": 10, - "type": "row", - "details": { - "prop_background_color": "RGB(220, 220, 220)", - "prop_border_color": "RGB(0, 0, 200)", - "prop_border_type": "T" - }, - "nodes": [ - { - "value": 4, - "type": "col", - "nodes": [ - { - "value": "string", - "type": "text", - "details": { - "prop_align": "C", - "prop_breakline_strategy": "empty_space_strategy", - "prop_color": "RGB(0, 0, 0)", - "prop_font_family": "arial", - "prop_font_size": 12, - "prop_font_style": "B", - "prop_top": 2 - } - } - ] - }, - { - "value": 4, - "type": "col", - "nodes": [ - { - "value": "string", - "type": "text", - "details": { - "prop_align": "C", - "prop_breakline_strategy": "empty_space_strategy", - "prop_color": "RGB(0, 0, 0)", - "prop_font_family": "arial", - "prop_font_size": 12, - "prop_font_style": "B", - "prop_top": 2 - } - } - ] - }, - { - "value": 4, - "type": "col", - "nodes": [ - { - "value": "string", - "type": "text", - "details": { - "prop_align": "C", - "prop_breakline_strategy": "empty_space_strategy", - "prop_color": "RGB(0, 0, 0)", - "prop_font_family": "arial", - "prop_font_size": 12, - "prop_font_style": "B", - "prop_top": 2 - } - } - ] - } - ] - }, - { - "value": 10, - "type": "row", - "nodes": [ - { - "value": 0, - "type": "col", - "details": { - "is_max": true - } - } - ] - }, - { - "value": 10, - "type": "row", - "nodes": [ - { - "value": 4, - "type": "col", - "details": { - "prop_background_color": "RGB(80, 80, 80)", - "prop_border_color": "RGB(200, 0, 0)", - "prop_border_line_style": "dashed", - "prop_border_thickness": 0.5, - "prop_border_type": "1" - }, - "nodes": [ - { - "value": "string", - "type": "text", - "details": { - "prop_align": "C", - "prop_breakline_strategy": "empty_space_strategy", - "prop_color": "RGB(255, 255, 255)", - "prop_font_family": "arial", - "prop_font_size": 12, - "prop_font_style": "B", - "prop_top": 2 - } - } - ] - }, - { - "value": 4, - "type": "col", - "details": { - "prop_background_color": "RGB(80, 80, 80)", - "prop_border_color": "RGB(200, 0, 0)", - "prop_border_line_style": "dashed", - "prop_border_thickness": 0.5, - "prop_border_type": "1" - }, - "nodes": [ - { - "value": "string", - "type": "text", - "details": { - "prop_align": "C", - "prop_breakline_strategy": "empty_space_strategy", - "prop_color": "RGB(255, 255, 255)", - "prop_font_family": "arial", - "prop_font_size": 12, - "prop_font_style": "B", - "prop_top": 2 - } - } - ] - }, - { - "value": 4, - "type": "col", - "details": { - "prop_background_color": "RGB(80, 80, 80)", - "prop_border_color": "RGB(200, 0, 0)", - "prop_border_line_style": "dashed", - "prop_border_thickness": 0.5, - "prop_border_type": "1" - }, - "nodes": [ - { - "value": "string", - "type": "text", - "details": { - "prop_align": "C", - "prop_breakline_strategy": "empty_space_strategy", - "prop_color": "RGB(255, 255, 255)", - "prop_font_family": "arial", - "prop_font_size": 12, - "prop_font_style": "B", - "prop_top": 2 - } - } - ] - } - ] - }, - { - "value": 10, - "type": "row", - "nodes": [ - { - "value": 0, - "type": "col", - "details": { - "is_max": true - } - } - ] - }, - { - "value": 10, - "type": "row", - "details": { - "prop_background_color": "RGB(220, 220, 220)", - "prop_border_color": "RGB(0, 0, 200)", - "prop_border_type": "B" - }, - "nodes": [ - { - "value": 4, - "type": "col", - "nodes": [ - { - "value": "string", - "type": "text", - "details": { - "prop_align": "C", - "prop_breakline_strategy": "empty_space_strategy", - "prop_color": "RGB(0, 0, 0)", - "prop_font_family": "arial", - "prop_font_size": 12, - "prop_font_style": "B", - "prop_top": 2 - } - } - ] - }, - { - "value": 4, - "type": "col", - "nodes": [ - { - "value": "string", - "type": "text", - "details": { - "prop_align": "C", - "prop_breakline_strategy": "empty_space_strategy", - "prop_color": "RGB(0, 0, 0)", - "prop_font_family": "arial", - "prop_font_size": 12, - "prop_font_style": "B", - "prop_top": 2 - } - } - ] - }, - { - "value": 4, - "type": "col", - "nodes": [ - { - "value": "string", - "type": "text", - "details": { - "prop_align": "C", - "prop_breakline_strategy": "empty_space_strategy", - "prop_color": "RGB(0, 0, 0)", - "prop_font_family": "arial", - "prop_font_size": 12, - "prop_font_style": "B", - "prop_top": 2 - } - } - ] - } - ] - }, - { - "value": 10, - "type": "row", - "nodes": [ - { - "value": 0, - "type": "col", - "details": { - "is_max": true - } - } - ] - }, - { - "value": 10, - "type": "row", - "nodes": [ - { - "value": 4, - "type": "col", - "details": { - "prop_background_color": "RGB(80, 80, 80)", - "prop_border_color": "RGB(200, 0, 0)", - "prop_border_line_style": "dashed", - "prop_border_thickness": 0.5, - "prop_border_type": "1" - }, - "nodes": [ - { - "value": "string", - "type": "text", - "details": { - "prop_align": "C", - "prop_breakline_strategy": "empty_space_strategy", - "prop_color": "RGB(255, 255, 255)", - "prop_font_family": "arial", - "prop_font_size": 12, - "prop_font_style": "B", - "prop_top": 2 - } - } - ] - }, - { - "value": 4, - "type": "col", - "details": { - "prop_background_color": "RGB(80, 80, 80)", - "prop_border_color": "RGB(200, 0, 0)", - "prop_border_line_style": "dashed", - "prop_border_thickness": 0.5, - "prop_border_type": "1" - }, - "nodes": [ - { - "value": "string", - "type": "text", - "details": { - "prop_align": "C", - "prop_breakline_strategy": "empty_space_strategy", - "prop_color": "RGB(255, 255, 255)", - "prop_font_family": "arial", - "prop_font_size": 12, - "prop_font_style": "B", - "prop_top": 2 - } - } - ] - }, - { - "value": 4, - "type": "col", - "details": { - "prop_background_color": "RGB(80, 80, 80)", - "prop_border_color": "RGB(200, 0, 0)", - "prop_border_line_style": "dashed", - "prop_border_thickness": 0.5, - "prop_border_type": "1" - }, - "nodes": [ - { - "value": "string", - "type": "text", - "details": { - "prop_align": "C", - "prop_breakline_strategy": "empty_space_strategy", - "prop_color": "RGB(255, 255, 255)", - "prop_font_family": "arial", - "prop_font_size": 12, - "prop_font_style": "B", - "prop_top": 2 - } - } - ] - } - ] - }, - { - "value": 10, - "type": "row", - "nodes": [ - { - "value": 0, - "type": "col", - "details": { - "is_max": true - } - } - ] - }, - { - "value": 10, - "type": "row", - "details": { - "prop_background_color": "RGB(220, 220, 220)", - "prop_border_color": "RGB(0, 0, 200)" - }, - "nodes": [ - { - "value": 4, - "type": "col", - "nodes": [ - { - "value": "string", - "type": "text", - "details": { - "prop_align": "C", - "prop_breakline_strategy": "empty_space_strategy", - "prop_color": "RGB(0, 0, 0)", - "prop_font_family": "arial", - "prop_font_size": 12, - "prop_font_style": "B", - "prop_top": 2 - } - } - ] - }, - { - "value": 4, - "type": "col", - "nodes": [ - { - "value": "string", - "type": "text", - "details": { - "prop_align": "C", - "prop_breakline_strategy": "empty_space_strategy", - "prop_color": "RGB(0, 0, 0)", - "prop_font_family": "arial", - "prop_font_size": 12, - "prop_font_style": "B", - "prop_top": 2 - } - } - ] - }, - { - "value": 4, - "type": "col", - "nodes": [ - { - "value": "string", - "type": "text", - "details": { - "prop_align": "C", - "prop_breakline_strategy": "empty_space_strategy", - "prop_color": "RGB(0, 0, 0)", - "prop_font_family": "arial", - "prop_font_size": 12, - "prop_font_style": "B", - "prop_top": 2 - } - } - ] - } - ] - }, - { - "value": 10, - "type": "row", - "nodes": [ - { - "value": 0, - "type": "col", - "details": { - "is_max": true - } - } - ] - }, - { - "value": 6.9975, - "type": "row", - "nodes": [ - { - "value": 12, - "type": "col" - } - ] - } - ] - }, - { - "type": "page", - "nodes": [ - { - "value": 10, - "type": "row", - "nodes": [ - { - "value": 4, - "type": "col", - "details": { - "prop_background_color": "RGB(80, 80, 80)", - "prop_border_color": "RGB(200, 0, 0)", - "prop_border_line_style": "dashed", - "prop_border_thickness": 0.5, - "prop_border_type": "1" - }, - "nodes": [ - { - "value": "string", - "type": "text", - "details": { - "prop_align": "C", - "prop_breakline_strategy": "empty_space_strategy", - "prop_color": "RGB(255, 255, 255)", - "prop_font_family": "arial", - "prop_font_size": 12, - "prop_font_style": "B", - "prop_top": 2 - } - } - ] - }, - { - "value": 4, - "type": "col", - "details": { - "prop_background_color": "RGB(80, 80, 80)", - "prop_border_color": "RGB(200, 0, 0)", - "prop_border_line_style": "dashed", - "prop_border_thickness": 0.5, - "prop_border_type": "1" - }, - "nodes": [ - { - "value": "string", - "type": "text", - "details": { - "prop_align": "C", - "prop_breakline_strategy": "empty_space_strategy", - "prop_color": "RGB(255, 255, 255)", - "prop_font_family": "arial", - "prop_font_size": 12, - "prop_font_style": "B", - "prop_top": 2 - } - } - ] - }, - { - "value": 4, - "type": "col", - "details": { - "prop_background_color": "RGB(80, 80, 80)", - "prop_border_color": "RGB(200, 0, 0)", - "prop_border_line_style": "dashed", - "prop_border_thickness": 0.5, - "prop_border_type": "1" - }, - "nodes": [ - { - "value": "string", - "type": "text", - "details": { - "prop_align": "C", - "prop_breakline_strategy": "empty_space_strategy", - "prop_color": "RGB(255, 255, 255)", - "prop_font_family": "arial", - "prop_font_size": 12, - "prop_font_style": "B", - "prop_top": 2 - } - } - ] - } - ] - }, - { - "value": 10, - "type": "row", - "nodes": [ - { - "value": 0, - "type": "col", - "details": { - "is_max": true - } - } - ] - }, - { - "value": 10, - "type": "row", - "details": { - "prop_background_color": "RGB(220, 220, 220)", - "prop_border_color": "RGB(0, 0, 200)", - "prop_border_type": "1" - }, - "nodes": [ - { - "value": 4, - "type": "col", - "nodes": [ - { - "value": "string", - "type": "text", - "details": { - "prop_align": "C", - "prop_breakline_strategy": "empty_space_strategy", - "prop_color": "RGB(0, 0, 0)", - "prop_font_family": "arial", - "prop_font_size": 12, - "prop_font_style": "B", - "prop_top": 2 - } - } - ] - }, - { - "value": 4, - "type": "col", - "nodes": [ - { - "value": "string", - "type": "text", - "details": { - "prop_align": "C", - "prop_breakline_strategy": "empty_space_strategy", - "prop_color": "RGB(0, 0, 0)", - "prop_font_family": "arial", - "prop_font_size": 12, - "prop_font_style": "B", - "prop_top": 2 - } - } - ] - }, - { - "value": 4, - "type": "col", - "nodes": [ - { - "value": "string", - "type": "text", - "details": { - "prop_align": "C", - "prop_breakline_strategy": "empty_space_strategy", - "prop_color": "RGB(0, 0, 0)", - "prop_font_family": "arial", - "prop_font_size": 12, - "prop_font_style": "B", - "prop_top": 2 - } - } - ] - } - ] - }, - { - "value": 10, - "type": "row", - "nodes": [ - { - "value": 0, - "type": "col", - "details": { - "is_max": true - } - } - ] - }, - { - "value": 10, - "type": "row", - "nodes": [ - { - "value": 4, - "type": "col", - "details": { - "prop_background_color": "RGB(80, 80, 80)", - "prop_border_color": "RGB(200, 0, 0)", - "prop_border_line_style": "dashed", - "prop_border_thickness": 0.5, - "prop_border_type": "1" - }, - "nodes": [ - { - "value": "string", - "type": "text", - "details": { - "prop_align": "C", - "prop_breakline_strategy": "empty_space_strategy", - "prop_color": "RGB(255, 255, 255)", - "prop_font_family": "arial", - "prop_font_size": 12, - "prop_font_style": "B", - "prop_top": 2 - } - } - ] - }, - { - "value": 4, - "type": "col", - "details": { - "prop_background_color": "RGB(80, 80, 80)", - "prop_border_color": "RGB(200, 0, 0)", - "prop_border_line_style": "dashed", - "prop_border_thickness": 0.5, - "prop_border_type": "1" - }, - "nodes": [ - { - "value": "string", - "type": "text", - "details": { - "prop_align": "C", - "prop_breakline_strategy": "empty_space_strategy", - "prop_color": "RGB(255, 255, 255)", - "prop_font_family": "arial", - "prop_font_size": 12, - "prop_font_style": "B", - "prop_top": 2 - } - } - ] - }, - { - "value": 4, - "type": "col", - "details": { - "prop_background_color": "RGB(80, 80, 80)", - "prop_border_color": "RGB(200, 0, 0)", - "prop_border_line_style": "dashed", - "prop_border_thickness": 0.5, - "prop_border_type": "1" - }, - "nodes": [ - { - "value": "string", - "type": "text", - "details": { - "prop_align": "C", - "prop_breakline_strategy": "empty_space_strategy", - "prop_color": "RGB(255, 255, 255)", - "prop_font_family": "arial", - "prop_font_size": 12, - "prop_font_style": "B", - "prop_top": 2 - } - } - ] - } - ] - }, - { - "value": 10, - "type": "row", - "nodes": [ - { - "value": 0, - "type": "col", - "details": { - "is_max": true - } - } - ] - }, - { - "value": 10, - "type": "row", - "details": { - "prop_background_color": "RGB(220, 220, 220)", - "prop_border_color": "RGB(0, 0, 200)", - "prop_border_type": "L" - }, - "nodes": [ - { - "value": 4, - "type": "col", - "nodes": [ - { - "value": "string", - "type": "text", - "details": { - "prop_align": "C", - "prop_breakline_strategy": "empty_space_strategy", - "prop_color": "RGB(0, 0, 0)", - "prop_font_family": "arial", - "prop_font_size": 12, - "prop_font_style": "B", - "prop_top": 2 - } - } - ] - }, - { - "value": 4, - "type": "col", - "nodes": [ - { - "value": "string", - "type": "text", - "details": { - "prop_align": "C", - "prop_breakline_strategy": "empty_space_strategy", - "prop_color": "RGB(0, 0, 0)", - "prop_font_family": "arial", - "prop_font_size": 12, - "prop_font_style": "B", - "prop_top": 2 - } - } - ] - }, - { - "value": 4, - "type": "col", - "nodes": [ - { - "value": "string", - "type": "text", - "details": { - "prop_align": "C", - "prop_breakline_strategy": "empty_space_strategy", - "prop_color": "RGB(0, 0, 0)", - "prop_font_family": "arial", - "prop_font_size": 12, - "prop_font_style": "B", - "prop_top": 2 - } - } - ] - } - ] - }, - { - "value": 10, - "type": "row", - "nodes": [ - { - "value": 0, - "type": "col", - "details": { - "is_max": true - } - } - ] - }, - { - "value": 186.9975, - "type": "row", - "nodes": [ - { - "value": 12, - "type": "col" - } - ] - } - ] - } - ] + "type": "maroto", + "details": { + "chunk_workers": 1, + "config_margin_bottom": 20.0025, + "config_margin_left": 10, + "config_margin_right": 10, + "config_margin_top": 10, + "config_max_grid_sum": 12, + "config_provider_type": "gofpdf", + "generation_mode": "sequential", + "maroto_dimension_height": 297, + "maroto_dimension_width": 210, + "prop_font_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 10 + }, + "nodes": [ + { + "type": "page", + "nodes": [ + { + "value": 10, + "type": "row", + "nodes": [ + { + "value": 4, + "type": "col", + "details": { + "prop_background_color": "RGB(80, 80, 80)", + "prop_border_color": "RGB(200, 0, 0)", + "prop_border_line_style": "dashed", + "prop_border_thickness": 0.5, + "prop_border_type": 15 + }, + "nodes": [ + { + "value": "string", + "type": "text", + "details": { + "prop_align": "C", + "prop_breakline_strategy": "empty_space_strategy", + "prop_color": "RGB(255, 255, 255)", + "prop_font_family": "arial", + "prop_font_size": 12, + "prop_font_style": "B", + "prop_top": 2 + } + } + ] + }, + { + "value": 4, + "type": "col", + "details": { + "prop_background_color": "RGB(80, 80, 80)", + "prop_border_color": "RGB(200, 0, 0)", + "prop_border_line_style": "dashed", + "prop_border_thickness": 0.5, + "prop_border_type": 15 + }, + "nodes": [ + { + "value": "string", + "type": "text", + "details": { + "prop_align": "C", + "prop_breakline_strategy": "empty_space_strategy", + "prop_color": "RGB(255, 255, 255)", + "prop_font_family": "arial", + "prop_font_size": 12, + "prop_font_style": "B", + "prop_top": 2 + } + } + ] + }, + { + "value": 4, + "type": "col", + "details": { + "prop_background_color": "RGB(80, 80, 80)", + "prop_border_color": "RGB(200, 0, 0)", + "prop_border_line_style": "dashed", + "prop_border_thickness": 0.5, + "prop_border_type": 15 + }, + "nodes": [ + { + "value": "string", + "type": "text", + "details": { + "prop_align": "C", + "prop_breakline_strategy": "empty_space_strategy", + "prop_color": "RGB(255, 255, 255)", + "prop_font_family": "arial", + "prop_font_size": 12, + "prop_font_style": "B", + "prop_top": 2 + } + } + ] + } + ] + }, + { + "value": 10, + "type": "row", + "nodes": [ + { + "value": 0, + "type": "col", + "details": { + "is_max": true + } + } + ] + }, + { + "value": 10, + "type": "row", + "details": { + "prop_background_color": "RGB(220, 220, 220)", + "prop_border_color": "RGB(0, 0, 200)" + }, + "nodes": [ + { + "value": 4, + "type": "col", + "nodes": [ + { + "value": "string", + "type": "text", + "details": { + "prop_align": "C", + "prop_breakline_strategy": "empty_space_strategy", + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 12, + "prop_font_style": "B", + "prop_top": 2 + } + } + ] + }, + { + "value": 4, + "type": "col", + "nodes": [ + { + "value": "string", + "type": "text", + "details": { + "prop_align": "C", + "prop_breakline_strategy": "empty_space_strategy", + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 12, + "prop_font_style": "B", + "prop_top": 2 + } + } + ] + }, + { + "value": 4, + "type": "col", + "nodes": [ + { + "value": "string", + "type": "text", + "details": { + "prop_align": "C", + "prop_breakline_strategy": "empty_space_strategy", + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 12, + "prop_font_style": "B", + "prop_top": 2 + } + } + ] + } + ] + }, + { + "value": 10, + "type": "row", + "nodes": [ + { + "value": 0, + "type": "col", + "details": { + "is_max": true + } + } + ] + }, + { + "value": 10, + "type": "row", + "nodes": [ + { + "value": 4, + "type": "col", + "details": { + "prop_background_color": "RGB(80, 80, 80)", + "prop_border_color": "RGB(200, 0, 0)", + "prop_border_line_style": "dashed", + "prop_border_thickness": 0.5, + "prop_border_type": 15 + }, + "nodes": [ + { + "value": "string", + "type": "text", + "details": { + "prop_align": "C", + "prop_breakline_strategy": "empty_space_strategy", + "prop_color": "RGB(255, 255, 255)", + "prop_font_family": "arial", + "prop_font_size": 12, + "prop_font_style": "B", + "prop_top": 2 + } + } + ] + }, + { + "value": 4, + "type": "col", + "details": { + "prop_background_color": "RGB(80, 80, 80)", + "prop_border_color": "RGB(200, 0, 0)", + "prop_border_line_style": "dashed", + "prop_border_thickness": 0.5, + "prop_border_type": 15 + }, + "nodes": [ + { + "value": "string", + "type": "text", + "details": { + "prop_align": "C", + "prop_breakline_strategy": "empty_space_strategy", + "prop_color": "RGB(255, 255, 255)", + "prop_font_family": "arial", + "prop_font_size": 12, + "prop_font_style": "B", + "prop_top": 2 + } + } + ] + }, + { + "value": 4, + "type": "col", + "details": { + "prop_background_color": "RGB(80, 80, 80)", + "prop_border_color": "RGB(200, 0, 0)", + "prop_border_line_style": "dashed", + "prop_border_thickness": 0.5, + "prop_border_type": 15 + }, + "nodes": [ + { + "value": "string", + "type": "text", + "details": { + "prop_align": "C", + "prop_breakline_strategy": "empty_space_strategy", + "prop_color": "RGB(255, 255, 255)", + "prop_font_family": "arial", + "prop_font_size": 12, + "prop_font_style": "B", + "prop_top": 2 + } + } + ] + } + ] + }, + { + "value": 10, + "type": "row", + "nodes": [ + { + "value": 0, + "type": "col", + "details": { + "is_max": true + } + } + ] + }, + { + "value": 10, + "type": "row", + "details": { + "prop_background_color": "RGB(220, 220, 220)", + "prop_border_color": "RGB(0, 0, 200)", + "prop_border_type": 15 + }, + "nodes": [ + { + "value": 4, + "type": "col", + "nodes": [ + { + "value": "string", + "type": "text", + "details": { + "prop_align": "C", + "prop_breakline_strategy": "empty_space_strategy", + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 12, + "prop_font_style": "B", + "prop_top": 2 + } + } + ] + }, + { + "value": 4, + "type": "col", + "nodes": [ + { + "value": "string", + "type": "text", + "details": { + "prop_align": "C", + "prop_breakline_strategy": "empty_space_strategy", + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 12, + "prop_font_style": "B", + "prop_top": 2 + } + } + ] + }, + { + "value": 4, + "type": "col", + "nodes": [ + { + "value": "string", + "type": "text", + "details": { + "prop_align": "C", + "prop_breakline_strategy": "empty_space_strategy", + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 12, + "prop_font_style": "B", + "prop_top": 2 + } + } + ] + } + ] + }, + { + "value": 10, + "type": "row", + "nodes": [ + { + "value": 0, + "type": "col", + "details": { + "is_max": true + } + } + ] + }, + { + "value": 10, + "type": "row", + "nodes": [ + { + "value": 4, + "type": "col", + "details": { + "prop_background_color": "RGB(80, 80, 80)", + "prop_border_color": "RGB(200, 0, 0)", + "prop_border_line_style": "dashed", + "prop_border_thickness": 0.5, + "prop_border_type": 15 + }, + "nodes": [ + { + "value": "string", + "type": "text", + "details": { + "prop_align": "C", + "prop_breakline_strategy": "empty_space_strategy", + "prop_color": "RGB(255, 255, 255)", + "prop_font_family": "arial", + "prop_font_size": 12, + "prop_font_style": "B", + "prop_top": 2 + } + } + ] + }, + { + "value": 4, + "type": "col", + "details": { + "prop_background_color": "RGB(80, 80, 80)", + "prop_border_color": "RGB(200, 0, 0)", + "prop_border_line_style": "dashed", + "prop_border_thickness": 0.5, + "prop_border_type": 15 + }, + "nodes": [ + { + "value": "string", + "type": "text", + "details": { + "prop_align": "C", + "prop_breakline_strategy": "empty_space_strategy", + "prop_color": "RGB(255, 255, 255)", + "prop_font_family": "arial", + "prop_font_size": 12, + "prop_font_style": "B", + "prop_top": 2 + } + } + ] + }, + { + "value": 4, + "type": "col", + "details": { + "prop_background_color": "RGB(80, 80, 80)", + "prop_border_color": "RGB(200, 0, 0)", + "prop_border_line_style": "dashed", + "prop_border_thickness": 0.5, + "prop_border_type": 15 + }, + "nodes": [ + { + "value": "string", + "type": "text", + "details": { + "prop_align": "C", + "prop_breakline_strategy": "empty_space_strategy", + "prop_color": "RGB(255, 255, 255)", + "prop_font_family": "arial", + "prop_font_size": 12, + "prop_font_style": "B", + "prop_top": 2 + } + } + ] + } + ] + }, + { + "value": 10, + "type": "row", + "nodes": [ + { + "value": 0, + "type": "col", + "details": { + "is_max": true + } + } + ] + }, + { + "value": 10, + "type": "row", + "details": { + "prop_background_color": "RGB(220, 220, 220)", + "prop_border_color": "RGB(0, 0, 200)", + "prop_border_type": 1 + }, + "nodes": [ + { + "value": 4, + "type": "col", + "nodes": [ + { + "value": "string", + "type": "text", + "details": { + "prop_align": "C", + "prop_breakline_strategy": "empty_space_strategy", + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 12, + "prop_font_style": "B", + "prop_top": 2 + } + } + ] + }, + { + "value": 4, + "type": "col", + "nodes": [ + { + "value": "string", + "type": "text", + "details": { + "prop_align": "C", + "prop_breakline_strategy": "empty_space_strategy", + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 12, + "prop_font_style": "B", + "prop_top": 2 + } + } + ] + }, + { + "value": 4, + "type": "col", + "nodes": [ + { + "value": "string", + "type": "text", + "details": { + "prop_align": "C", + "prop_breakline_strategy": "empty_space_strategy", + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 12, + "prop_font_style": "B", + "prop_top": 2 + } + } + ] + } + ] + }, + { + "value": 10, + "type": "row", + "nodes": [ + { + "value": 0, + "type": "col", + "details": { + "is_max": true + } + } + ] + }, + { + "value": 10, + "type": "row", + "nodes": [ + { + "value": 4, + "type": "col", + "details": { + "prop_background_color": "RGB(80, 80, 80)", + "prop_border_color": "RGB(200, 0, 0)", + "prop_border_line_style": "dashed", + "prop_border_thickness": 0.5, + "prop_border_type": 15 + }, + "nodes": [ + { + "value": "string", + "type": "text", + "details": { + "prop_align": "C", + "prop_breakline_strategy": "empty_space_strategy", + "prop_color": "RGB(255, 255, 255)", + "prop_font_family": "arial", + "prop_font_size": 12, + "prop_font_style": "B", + "prop_top": 2 + } + } + ] + }, + { + "value": 4, + "type": "col", + "details": { + "prop_background_color": "RGB(80, 80, 80)", + "prop_border_color": "RGB(200, 0, 0)", + "prop_border_line_style": "dashed", + "prop_border_thickness": 0.5, + "prop_border_type": 15 + }, + "nodes": [ + { + "value": "string", + "type": "text", + "details": { + "prop_align": "C", + "prop_breakline_strategy": "empty_space_strategy", + "prop_color": "RGB(255, 255, 255)", + "prop_font_family": "arial", + "prop_font_size": 12, + "prop_font_style": "B", + "prop_top": 2 + } + } + ] + }, + { + "value": 4, + "type": "col", + "details": { + "prop_background_color": "RGB(80, 80, 80)", + "prop_border_color": "RGB(200, 0, 0)", + "prop_border_line_style": "dashed", + "prop_border_thickness": 0.5, + "prop_border_type": 15 + }, + "nodes": [ + { + "value": "string", + "type": "text", + "details": { + "prop_align": "C", + "prop_breakline_strategy": "empty_space_strategy", + "prop_color": "RGB(255, 255, 255)", + "prop_font_family": "arial", + "prop_font_size": 12, + "prop_font_style": "B", + "prop_top": 2 + } + } + ] + } + ] + }, + { + "value": 10, + "type": "row", + "nodes": [ + { + "value": 0, + "type": "col", + "details": { + "is_max": true + } + } + ] + }, + { + "value": 10, + "type": "row", + "details": { + "prop_background_color": "RGB(220, 220, 220)", + "prop_border_color": "RGB(0, 0, 200)", + "prop_border_type": 4 + }, + "nodes": [ + { + "value": 4, + "type": "col", + "nodes": [ + { + "value": "string", + "type": "text", + "details": { + "prop_align": "C", + "prop_breakline_strategy": "empty_space_strategy", + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 12, + "prop_font_style": "B", + "prop_top": 2 + } + } + ] + }, + { + "value": 4, + "type": "col", + "nodes": [ + { + "value": "string", + "type": "text", + "details": { + "prop_align": "C", + "prop_breakline_strategy": "empty_space_strategy", + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 12, + "prop_font_style": "B", + "prop_top": 2 + } + } + ] + }, + { + "value": 4, + "type": "col", + "nodes": [ + { + "value": "string", + "type": "text", + "details": { + "prop_align": "C", + "prop_breakline_strategy": "empty_space_strategy", + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 12, + "prop_font_style": "B", + "prop_top": 2 + } + } + ] + } + ] + }, + { + "value": 10, + "type": "row", + "nodes": [ + { + "value": 0, + "type": "col", + "details": { + "is_max": true + } + } + ] + }, + { + "value": 10, + "type": "row", + "nodes": [ + { + "value": 4, + "type": "col", + "details": { + "prop_background_color": "RGB(80, 80, 80)", + "prop_border_color": "RGB(200, 0, 0)", + "prop_border_line_style": "dashed", + "prop_border_thickness": 0.5, + "prop_border_type": 15 + }, + "nodes": [ + { + "value": "string", + "type": "text", + "details": { + "prop_align": "C", + "prop_breakline_strategy": "empty_space_strategy", + "prop_color": "RGB(255, 255, 255)", + "prop_font_family": "arial", + "prop_font_size": 12, + "prop_font_style": "B", + "prop_top": 2 + } + } + ] + }, + { + "value": 4, + "type": "col", + "details": { + "prop_background_color": "RGB(80, 80, 80)", + "prop_border_color": "RGB(200, 0, 0)", + "prop_border_line_style": "dashed", + "prop_border_thickness": 0.5, + "prop_border_type": 15 + }, + "nodes": [ + { + "value": "string", + "type": "text", + "details": { + "prop_align": "C", + "prop_breakline_strategy": "empty_space_strategy", + "prop_color": "RGB(255, 255, 255)", + "prop_font_family": "arial", + "prop_font_size": 12, + "prop_font_style": "B", + "prop_top": 2 + } + } + ] + }, + { + "value": 4, + "type": "col", + "details": { + "prop_background_color": "RGB(80, 80, 80)", + "prop_border_color": "RGB(200, 0, 0)", + "prop_border_line_style": "dashed", + "prop_border_thickness": 0.5, + "prop_border_type": 15 + }, + "nodes": [ + { + "value": "string", + "type": "text", + "details": { + "prop_align": "C", + "prop_breakline_strategy": "empty_space_strategy", + "prop_color": "RGB(255, 255, 255)", + "prop_font_family": "arial", + "prop_font_size": 12, + "prop_font_style": "B", + "prop_top": 2 + } + } + ] + } + ] + }, + { + "value": 10, + "type": "row", + "nodes": [ + { + "value": 0, + "type": "col", + "details": { + "is_max": true + } + } + ] + }, + { + "value": 10, + "type": "row", + "details": { + "prop_background_color": "RGB(220, 220, 220)", + "prop_border_color": "RGB(0, 0, 200)", + "prop_border_type": 2 + }, + "nodes": [ + { + "value": 4, + "type": "col", + "nodes": [ + { + "value": "string", + "type": "text", + "details": { + "prop_align": "C", + "prop_breakline_strategy": "empty_space_strategy", + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 12, + "prop_font_style": "B", + "prop_top": 2 + } + } + ] + }, + { + "value": 4, + "type": "col", + "nodes": [ + { + "value": "string", + "type": "text", + "details": { + "prop_align": "C", + "prop_breakline_strategy": "empty_space_strategy", + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 12, + "prop_font_style": "B", + "prop_top": 2 + } + } + ] + }, + { + "value": 4, + "type": "col", + "nodes": [ + { + "value": "string", + "type": "text", + "details": { + "prop_align": "C", + "prop_breakline_strategy": "empty_space_strategy", + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 12, + "prop_font_style": "B", + "prop_top": 2 + } + } + ] + } + ] + }, + { + "value": 10, + "type": "row", + "nodes": [ + { + "value": 0, + "type": "col", + "details": { + "is_max": true + } + } + ] + }, + { + "value": 10, + "type": "row", + "nodes": [ + { + "value": 4, + "type": "col", + "details": { + "prop_background_color": "RGB(80, 80, 80)", + "prop_border_color": "RGB(200, 0, 0)", + "prop_border_line_style": "dashed", + "prop_border_thickness": 0.5, + "prop_border_type": 15 + }, + "nodes": [ + { + "value": "string", + "type": "text", + "details": { + "prop_align": "C", + "prop_breakline_strategy": "empty_space_strategy", + "prop_color": "RGB(255, 255, 255)", + "prop_font_family": "arial", + "prop_font_size": 12, + "prop_font_style": "B", + "prop_top": 2 + } + } + ] + }, + { + "value": 4, + "type": "col", + "details": { + "prop_background_color": "RGB(80, 80, 80)", + "prop_border_color": "RGB(200, 0, 0)", + "prop_border_line_style": "dashed", + "prop_border_thickness": 0.5, + "prop_border_type": 15 + }, + "nodes": [ + { + "value": "string", + "type": "text", + "details": { + "prop_align": "C", + "prop_breakline_strategy": "empty_space_strategy", + "prop_color": "RGB(255, 255, 255)", + "prop_font_family": "arial", + "prop_font_size": 12, + "prop_font_style": "B", + "prop_top": 2 + } + } + ] + }, + { + "value": 4, + "type": "col", + "details": { + "prop_background_color": "RGB(80, 80, 80)", + "prop_border_color": "RGB(200, 0, 0)", + "prop_border_line_style": "dashed", + "prop_border_thickness": 0.5, + "prop_border_type": 15 + }, + "nodes": [ + { + "value": "string", + "type": "text", + "details": { + "prop_align": "C", + "prop_breakline_strategy": "empty_space_strategy", + "prop_color": "RGB(255, 255, 255)", + "prop_font_family": "arial", + "prop_font_size": 12, + "prop_font_style": "B", + "prop_top": 2 + } + } + ] + } + ] + }, + { + "value": 10, + "type": "row", + "nodes": [ + { + "value": 0, + "type": "col", + "details": { + "is_max": true + } + } + ] + }, + { + "value": 10, + "type": "row", + "details": { + "prop_background_color": "RGB(220, 220, 220)", + "prop_border_color": "RGB(0, 0, 200)", + "prop_border_type": 8 + }, + "nodes": [ + { + "value": 4, + "type": "col", + "nodes": [ + { + "value": "string", + "type": "text", + "details": { + "prop_align": "C", + "prop_breakline_strategy": "empty_space_strategy", + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 12, + "prop_font_style": "B", + "prop_top": 2 + } + } + ] + }, + { + "value": 4, + "type": "col", + "nodes": [ + { + "value": "string", + "type": "text", + "details": { + "prop_align": "C", + "prop_breakline_strategy": "empty_space_strategy", + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 12, + "prop_font_style": "B", + "prop_top": 2 + } + } + ] + }, + { + "value": 4, + "type": "col", + "nodes": [ + { + "value": "string", + "type": "text", + "details": { + "prop_align": "C", + "prop_breakline_strategy": "empty_space_strategy", + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 12, + "prop_font_style": "B", + "prop_top": 2 + } + } + ] + } + ] + }, + { + "value": 10, + "type": "row", + "nodes": [ + { + "value": 0, + "type": "col", + "details": { + "is_max": true + } + } + ] + }, + { + "value": 10, + "type": "row", + "nodes": [ + { + "value": 4, + "type": "col", + "details": { + "prop_background_color": "RGB(80, 80, 80)", + "prop_border_color": "RGB(200, 0, 0)", + "prop_border_line_style": "dashed", + "prop_border_thickness": 0.5, + "prop_border_type": 15 + }, + "nodes": [ + { + "value": "string", + "type": "text", + "details": { + "prop_align": "C", + "prop_breakline_strategy": "empty_space_strategy", + "prop_color": "RGB(255, 255, 255)", + "prop_font_family": "arial", + "prop_font_size": 12, + "prop_font_style": "B", + "prop_top": 2 + } + } + ] + }, + { + "value": 4, + "type": "col", + "details": { + "prop_background_color": "RGB(80, 80, 80)", + "prop_border_color": "RGB(200, 0, 0)", + "prop_border_line_style": "dashed", + "prop_border_thickness": 0.5, + "prop_border_type": 15 + }, + "nodes": [ + { + "value": "string", + "type": "text", + "details": { + "prop_align": "C", + "prop_breakline_strategy": "empty_space_strategy", + "prop_color": "RGB(255, 255, 255)", + "prop_font_family": "arial", + "prop_font_size": 12, + "prop_font_style": "B", + "prop_top": 2 + } + } + ] + }, + { + "value": 4, + "type": "col", + "details": { + "prop_background_color": "RGB(80, 80, 80)", + "prop_border_color": "RGB(200, 0, 0)", + "prop_border_line_style": "dashed", + "prop_border_thickness": 0.5, + "prop_border_type": 15 + }, + "nodes": [ + { + "value": "string", + "type": "text", + "details": { + "prop_align": "C", + "prop_breakline_strategy": "empty_space_strategy", + "prop_color": "RGB(255, 255, 255)", + "prop_font_family": "arial", + "prop_font_size": 12, + "prop_font_style": "B", + "prop_top": 2 + } + } + ] + } + ] + }, + { + "value": 10, + "type": "row", + "nodes": [ + { + "value": 0, + "type": "col", + "details": { + "is_max": true + } + } + ] + }, + { + "value": 6.9975, + "type": "row", + "nodes": [ + { + "value": 12, + "type": "col" + } + ] + } + ] + }, + { + "type": "page", + "nodes": [ + { + "value": 10, + "type": "row", + "details": { + "prop_background_color": "RGB(220, 220, 220)", + "prop_border_color": "RGB(0, 0, 200)", + "prop_border_type": 3 + }, + "nodes": [ + { + "value": 4, + "type": "col", + "nodes": [ + { + "value": "string", + "type": "text", + "details": { + "prop_align": "C", + "prop_breakline_strategy": "empty_space_strategy", + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 12, + "prop_font_style": "B", + "prop_top": 2 + } + } + ] + }, + { + "value": 4, + "type": "col", + "nodes": [ + { + "value": "string", + "type": "text", + "details": { + "prop_align": "C", + "prop_breakline_strategy": "empty_space_strategy", + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 12, + "prop_font_style": "B", + "prop_top": 2 + } + } + ] + }, + { + "value": 4, + "type": "col", + "nodes": [ + { + "value": "string", + "type": "text", + "details": { + "prop_align": "C", + "prop_breakline_strategy": "empty_space_strategy", + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 12, + "prop_font_style": "B", + "prop_top": 2 + } + } + ] + } + ] + }, + { + "value": 10, + "type": "row", + "nodes": [ + { + "value": 0, + "type": "col", + "details": { + "is_max": true + } + } + ] + }, + { + "value": 10, + "type": "row", + "nodes": [ + { + "value": 4, + "type": "col", + "details": { + "prop_background_color": "RGB(80, 80, 80)", + "prop_border_color": "RGB(200, 0, 0)", + "prop_border_line_style": "dashed", + "prop_border_thickness": 0.5, + "prop_border_type": 15 + }, + "nodes": [ + { + "value": "string", + "type": "text", + "details": { + "prop_align": "C", + "prop_breakline_strategy": "empty_space_strategy", + "prop_color": "RGB(255, 255, 255)", + "prop_font_family": "arial", + "prop_font_size": 12, + "prop_font_style": "B", + "prop_top": 2 + } + } + ] + }, + { + "value": 4, + "type": "col", + "details": { + "prop_background_color": "RGB(80, 80, 80)", + "prop_border_color": "RGB(200, 0, 0)", + "prop_border_line_style": "dashed", + "prop_border_thickness": 0.5, + "prop_border_type": 15 + }, + "nodes": [ + { + "value": "string", + "type": "text", + "details": { + "prop_align": "C", + "prop_breakline_strategy": "empty_space_strategy", + "prop_color": "RGB(255, 255, 255)", + "prop_font_family": "arial", + "prop_font_size": 12, + "prop_font_style": "B", + "prop_top": 2 + } + } + ] + }, + { + "value": 4, + "type": "col", + "details": { + "prop_background_color": "RGB(80, 80, 80)", + "prop_border_color": "RGB(200, 0, 0)", + "prop_border_line_style": "dashed", + "prop_border_thickness": 0.5, + "prop_border_type": 15 + }, + "nodes": [ + { + "value": "string", + "type": "text", + "details": { + "prop_align": "C", + "prop_breakline_strategy": "empty_space_strategy", + "prop_color": "RGB(255, 255, 255)", + "prop_font_family": "arial", + "prop_font_size": 12, + "prop_font_style": "B", + "prop_top": 2 + } + } + ] + } + ] + }, + { + "value": 10, + "type": "row", + "nodes": [ + { + "value": 0, + "type": "col", + "details": { + "is_max": true + } + } + ] + }, + { + "value": 10, + "type": "row", + "details": { + "prop_background_color": "RGB(220, 220, 220)", + "prop_border_color": "RGB(0, 0, 200)", + "prop_border_type": 5 + }, + "nodes": [ + { + "value": 4, + "type": "col", + "nodes": [ + { + "value": "string", + "type": "text", + "details": { + "prop_align": "C", + "prop_breakline_strategy": "empty_space_strategy", + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 12, + "prop_font_style": "B", + "prop_top": 2 + } + } + ] + }, + { + "value": 4, + "type": "col", + "nodes": [ + { + "value": "string", + "type": "text", + "details": { + "prop_align": "C", + "prop_breakline_strategy": "empty_space_strategy", + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 12, + "prop_font_style": "B", + "prop_top": 2 + } + } + ] + }, + { + "value": 4, + "type": "col", + "nodes": [ + { + "value": "string", + "type": "text", + "details": { + "prop_align": "C", + "prop_breakline_strategy": "empty_space_strategy", + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 12, + "prop_font_style": "B", + "prop_top": 2 + } + } + ] + } + ] + }, + { + "value": 10, + "type": "row", + "nodes": [ + { + "value": 0, + "type": "col", + "details": { + "is_max": true + } + } + ] + }, + { + "value": 10, + "type": "row", + "nodes": [ + { + "value": 4, + "type": "col", + "details": { + "prop_background_color": "RGB(80, 80, 80)", + "prop_border_color": "RGB(200, 0, 0)", + "prop_border_line_style": "dashed", + "prop_border_thickness": 0.5, + "prop_border_type": 15 + }, + "nodes": [ + { + "value": "string", + "type": "text", + "details": { + "prop_align": "C", + "prop_breakline_strategy": "empty_space_strategy", + "prop_color": "RGB(255, 255, 255)", + "prop_font_family": "arial", + "prop_font_size": 12, + "prop_font_style": "B", + "prop_top": 2 + } + } + ] + }, + { + "value": 4, + "type": "col", + "details": { + "prop_background_color": "RGB(80, 80, 80)", + "prop_border_color": "RGB(200, 0, 0)", + "prop_border_line_style": "dashed", + "prop_border_thickness": 0.5, + "prop_border_type": 15 + }, + "nodes": [ + { + "value": "string", + "type": "text", + "details": { + "prop_align": "C", + "prop_breakline_strategy": "empty_space_strategy", + "prop_color": "RGB(255, 255, 255)", + "prop_font_family": "arial", + "prop_font_size": 12, + "prop_font_style": "B", + "prop_top": 2 + } + } + ] + }, + { + "value": 4, + "type": "col", + "details": { + "prop_background_color": "RGB(80, 80, 80)", + "prop_border_color": "RGB(200, 0, 0)", + "prop_border_line_style": "dashed", + "prop_border_thickness": 0.5, + "prop_border_type": 15 + }, + "nodes": [ + { + "value": "string", + "type": "text", + "details": { + "prop_align": "C", + "prop_breakline_strategy": "empty_space_strategy", + "prop_color": "RGB(255, 255, 255)", + "prop_font_family": "arial", + "prop_font_size": 12, + "prop_font_style": "B", + "prop_top": 2 + } + } + ] + } + ] + }, + { + "value": 10, + "type": "row", + "nodes": [ + { + "value": 0, + "type": "col", + "details": { + "is_max": true + } + } + ] + }, + { + "value": 10, + "type": "row", + "details": { + "prop_background_color": "RGB(220, 220, 220)", + "prop_border_color": "RGB(0, 0, 200)", + "prop_border_type": 10 + }, + "nodes": [ + { + "value": 4, + "type": "col", + "nodes": [ + { + "value": "string", + "type": "text", + "details": { + "prop_align": "C", + "prop_breakline_strategy": "empty_space_strategy", + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 12, + "prop_font_style": "B", + "prop_top": 2 + } + } + ] + }, + { + "value": 4, + "type": "col", + "nodes": [ + { + "value": "string", + "type": "text", + "details": { + "prop_align": "C", + "prop_breakline_strategy": "empty_space_strategy", + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 12, + "prop_font_style": "B", + "prop_top": 2 + } + } + ] + }, + { + "value": 4, + "type": "col", + "nodes": [ + { + "value": "string", + "type": "text", + "details": { + "prop_align": "C", + "prop_breakline_strategy": "empty_space_strategy", + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 12, + "prop_font_style": "B", + "prop_top": 2 + } + } + ] + } + ] + }, + { + "value": 10, + "type": "row", + "nodes": [ + { + "value": 0, + "type": "col", + "details": { + "is_max": true + } + } + ] + }, + { + "value": 10, + "type": "row", + "nodes": [ + { + "value": 4, + "type": "col", + "details": { + "prop_background_color": "RGB(80, 80, 80)", + "prop_border_color": "RGB(200, 0, 0)", + "prop_border_line_style": "dashed", + "prop_border_thickness": 0.5, + "prop_border_type": 15 + }, + "nodes": [ + { + "value": "string", + "type": "text", + "details": { + "prop_align": "C", + "prop_breakline_strategy": "empty_space_strategy", + "prop_color": "RGB(255, 255, 255)", + "prop_font_family": "arial", + "prop_font_size": 12, + "prop_font_style": "B", + "prop_top": 2 + } + } + ] + }, + { + "value": 4, + "type": "col", + "details": { + "prop_background_color": "RGB(80, 80, 80)", + "prop_border_color": "RGB(200, 0, 0)", + "prop_border_line_style": "dashed", + "prop_border_thickness": 0.5, + "prop_border_type": 15 + }, + "nodes": [ + { + "value": "string", + "type": "text", + "details": { + "prop_align": "C", + "prop_breakline_strategy": "empty_space_strategy", + "prop_color": "RGB(255, 255, 255)", + "prop_font_family": "arial", + "prop_font_size": 12, + "prop_font_style": "B", + "prop_top": 2 + } + } + ] + }, + { + "value": 4, + "type": "col", + "details": { + "prop_background_color": "RGB(80, 80, 80)", + "prop_border_color": "RGB(200, 0, 0)", + "prop_border_line_style": "dashed", + "prop_border_thickness": 0.5, + "prop_border_type": 15 + }, + "nodes": [ + { + "value": "string", + "type": "text", + "details": { + "prop_align": "C", + "prop_breakline_strategy": "empty_space_strategy", + "prop_color": "RGB(255, 255, 255)", + "prop_font_family": "arial", + "prop_font_size": 12, + "prop_font_style": "B", + "prop_top": 2 + } + } + ] + } + ] + }, + { + "value": 10, + "type": "row", + "nodes": [ + { + "value": 0, + "type": "col", + "details": { + "is_max": true + } + } + ] + }, + { + "value": 10, + "type": "row", + "details": { + "prop_background_color": "RGB(220, 220, 220)", + "prop_border_color": "RGB(0, 0, 200)", + "prop_border_type": 7 + }, + "nodes": [ + { + "value": 4, + "type": "col", + "nodes": [ + { + "value": "string", + "type": "text", + "details": { + "prop_align": "C", + "prop_breakline_strategy": "empty_space_strategy", + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 12, + "prop_font_style": "B", + "prop_top": 2 + } + } + ] + }, + { + "value": 4, + "type": "col", + "nodes": [ + { + "value": "string", + "type": "text", + "details": { + "prop_align": "C", + "prop_breakline_strategy": "empty_space_strategy", + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 12, + "prop_font_style": "B", + "prop_top": 2 + } + } + ] + }, + { + "value": 4, + "type": "col", + "nodes": [ + { + "value": "string", + "type": "text", + "details": { + "prop_align": "C", + "prop_breakline_strategy": "empty_space_strategy", + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 12, + "prop_font_style": "B", + "prop_top": 2 + } + } + ] + } + ] + }, + { + "value": 10, + "type": "row", + "nodes": [ + { + "value": 0, + "type": "col", + "details": { + "is_max": true + } + } + ] + }, + { + "value": 10, + "type": "row", + "nodes": [ + { + "value": 4, + "type": "col", + "details": { + "prop_background_color": "RGB(80, 80, 80)", + "prop_border_color": "RGB(200, 0, 0)", + "prop_border_line_style": "dashed", + "prop_border_thickness": 0.5, + "prop_border_type": 15 + }, + "nodes": [ + { + "value": "string", + "type": "text", + "details": { + "prop_align": "C", + "prop_breakline_strategy": "empty_space_strategy", + "prop_color": "RGB(255, 255, 255)", + "prop_font_family": "arial", + "prop_font_size": 12, + "prop_font_style": "B", + "prop_top": 2 + } + } + ] + }, + { + "value": 4, + "type": "col", + "details": { + "prop_background_color": "RGB(80, 80, 80)", + "prop_border_color": "RGB(200, 0, 0)", + "prop_border_line_style": "dashed", + "prop_border_thickness": 0.5, + "prop_border_type": 15 + }, + "nodes": [ + { + "value": "string", + "type": "text", + "details": { + "prop_align": "C", + "prop_breakline_strategy": "empty_space_strategy", + "prop_color": "RGB(255, 255, 255)", + "prop_font_family": "arial", + "prop_font_size": 12, + "prop_font_style": "B", + "prop_top": 2 + } + } + ] + }, + { + "value": 4, + "type": "col", + "details": { + "prop_background_color": "RGB(80, 80, 80)", + "prop_border_color": "RGB(200, 0, 0)", + "prop_border_line_style": "dashed", + "prop_border_thickness": 0.5, + "prop_border_type": 15 + }, + "nodes": [ + { + "value": "string", + "type": "text", + "details": { + "prop_align": "C", + "prop_breakline_strategy": "empty_space_strategy", + "prop_color": "RGB(255, 255, 255)", + "prop_font_family": "arial", + "prop_font_size": 12, + "prop_font_style": "B", + "prop_top": 2 + } + } + ] + } + ] + }, + { + "value": 10, + "type": "row", + "nodes": [ + { + "value": 0, + "type": "col", + "details": { + "is_max": true + } + } + ] + }, + { + "value": 10, + "type": "row", + "details": { + "prop_background_color": "RGB(220, 220, 220)", + "prop_border_color": "RGB(0, 0, 200)" + }, + "nodes": [ + { + "value": 4, + "type": "col", + "nodes": [ + { + "value": "string", + "type": "text", + "details": { + "prop_align": "C", + "prop_breakline_strategy": "empty_space_strategy", + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 12, + "prop_font_style": "B", + "prop_top": 2 + } + } + ] + }, + { + "value": 4, + "type": "col", + "nodes": [ + { + "value": "string", + "type": "text", + "details": { + "prop_align": "C", + "prop_breakline_strategy": "empty_space_strategy", + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 12, + "prop_font_style": "B", + "prop_top": 2 + } + } + ] + }, + { + "value": 4, + "type": "col", + "nodes": [ + { + "value": "string", + "type": "text", + "details": { + "prop_align": "C", + "prop_breakline_strategy": "empty_space_strategy", + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 12, + "prop_font_style": "B", + "prop_top": 2 + } + } + ] + } + ] + }, + { + "value": 10, + "type": "row", + "nodes": [ + { + "value": 0, + "type": "col", + "details": { + "is_max": true + } + } + ] + }, + { + "value": 10, + "type": "row", + "nodes": [ + { + "value": 4, + "type": "col", + "details": { + "prop_background_color": "RGB(80, 80, 80)", + "prop_border_color": "RGB(200, 0, 0)", + "prop_border_line_style": "dashed", + "prop_border_thickness": 0.5, + "prop_border_type": 15 + }, + "nodes": [ + { + "value": "string", + "type": "text", + "details": { + "prop_align": "C", + "prop_breakline_strategy": "empty_space_strategy", + "prop_color": "RGB(255, 255, 255)", + "prop_font_family": "arial", + "prop_font_size": 12, + "prop_font_style": "B", + "prop_top": 2 + } + } + ] + }, + { + "value": 4, + "type": "col", + "details": { + "prop_background_color": "RGB(80, 80, 80)", + "prop_border_color": "RGB(200, 0, 0)", + "prop_border_line_style": "dashed", + "prop_border_thickness": 0.5, + "prop_border_type": 15 + }, + "nodes": [ + { + "value": "string", + "type": "text", + "details": { + "prop_align": "C", + "prop_breakline_strategy": "empty_space_strategy", + "prop_color": "RGB(255, 255, 255)", + "prop_font_family": "arial", + "prop_font_size": 12, + "prop_font_style": "B", + "prop_top": 2 + } + } + ] + }, + { + "value": 4, + "type": "col", + "details": { + "prop_background_color": "RGB(80, 80, 80)", + "prop_border_color": "RGB(200, 0, 0)", + "prop_border_line_style": "dashed", + "prop_border_thickness": 0.5, + "prop_border_type": 15 + }, + "nodes": [ + { + "value": "string", + "type": "text", + "details": { + "prop_align": "C", + "prop_breakline_strategy": "empty_space_strategy", + "prop_color": "RGB(255, 255, 255)", + "prop_font_family": "arial", + "prop_font_size": 12, + "prop_font_style": "B", + "prop_top": 2 + } + } + ] + } + ] + }, + { + "value": 10, + "type": "row", + "nodes": [ + { + "value": 0, + "type": "col", + "details": { + "is_max": true + } + } + ] + }, + { + "value": 10, + "type": "row", + "details": { + "prop_background_color": "RGB(220, 220, 220)", + "prop_border_color": "RGB(0, 0, 200)", + "prop_border_type": 15 + }, + "nodes": [ + { + "value": 4, + "type": "col", + "nodes": [ + { + "value": "string", + "type": "text", + "details": { + "prop_align": "C", + "prop_breakline_strategy": "empty_space_strategy", + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 12, + "prop_font_style": "B", + "prop_top": 2 + } + } + ] + }, + { + "value": 4, + "type": "col", + "nodes": [ + { + "value": "string", + "type": "text", + "details": { + "prop_align": "C", + "prop_breakline_strategy": "empty_space_strategy", + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 12, + "prop_font_style": "B", + "prop_top": 2 + } + } + ] + }, + { + "value": 4, + "type": "col", + "nodes": [ + { + "value": "string", + "type": "text", + "details": { + "prop_align": "C", + "prop_breakline_strategy": "empty_space_strategy", + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 12, + "prop_font_style": "B", + "prop_top": 2 + } + } + ] + } + ] + }, + { + "value": 10, + "type": "row", + "nodes": [ + { + "value": 0, + "type": "col", + "details": { + "is_max": true + } + } + ] + }, + { + "value": 10, + "type": "row", + "nodes": [ + { + "value": 4, + "type": "col", + "details": { + "prop_background_color": "RGB(80, 80, 80)", + "prop_border_color": "RGB(200, 0, 0)", + "prop_border_line_style": "dashed", + "prop_border_thickness": 0.5, + "prop_border_type": 15 + }, + "nodes": [ + { + "value": "string", + "type": "text", + "details": { + "prop_align": "C", + "prop_breakline_strategy": "empty_space_strategy", + "prop_color": "RGB(255, 255, 255)", + "prop_font_family": "arial", + "prop_font_size": 12, + "prop_font_style": "B", + "prop_top": 2 + } + } + ] + }, + { + "value": 4, + "type": "col", + "details": { + "prop_background_color": "RGB(80, 80, 80)", + "prop_border_color": "RGB(200, 0, 0)", + "prop_border_line_style": "dashed", + "prop_border_thickness": 0.5, + "prop_border_type": 15 + }, + "nodes": [ + { + "value": "string", + "type": "text", + "details": { + "prop_align": "C", + "prop_breakline_strategy": "empty_space_strategy", + "prop_color": "RGB(255, 255, 255)", + "prop_font_family": "arial", + "prop_font_size": 12, + "prop_font_style": "B", + "prop_top": 2 + } + } + ] + }, + { + "value": 4, + "type": "col", + "details": { + "prop_background_color": "RGB(80, 80, 80)", + "prop_border_color": "RGB(200, 0, 0)", + "prop_border_line_style": "dashed", + "prop_border_thickness": 0.5, + "prop_border_type": 15 + }, + "nodes": [ + { + "value": "string", + "type": "text", + "details": { + "prop_align": "C", + "prop_breakline_strategy": "empty_space_strategy", + "prop_color": "RGB(255, 255, 255)", + "prop_font_family": "arial", + "prop_font_size": 12, + "prop_font_style": "B", + "prop_top": 2 + } + } + ] + } + ] + }, + { + "value": 10, + "type": "row", + "nodes": [ + { + "value": 0, + "type": "col", + "details": { + "is_max": true + } + } + ] + }, + { + "value": 10, + "type": "row", + "details": { + "prop_background_color": "RGB(220, 220, 220)", + "prop_border_color": "RGB(0, 0, 200)", + "prop_border_type": 1 + }, + "nodes": [ + { + "value": 4, + "type": "col", + "nodes": [ + { + "value": "string", + "type": "text", + "details": { + "prop_align": "C", + "prop_breakline_strategy": "empty_space_strategy", + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 12, + "prop_font_style": "B", + "prop_top": 2 + } + } + ] + }, + { + "value": 4, + "type": "col", + "nodes": [ + { + "value": "string", + "type": "text", + "details": { + "prop_align": "C", + "prop_breakline_strategy": "empty_space_strategy", + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 12, + "prop_font_style": "B", + "prop_top": 2 + } + } + ] + }, + { + "value": 4, + "type": "col", + "nodes": [ + { + "value": "string", + "type": "text", + "details": { + "prop_align": "C", + "prop_breakline_strategy": "empty_space_strategy", + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 12, + "prop_font_style": "B", + "prop_top": 2 + } + } + ] + } + ] + }, + { + "value": 10, + "type": "row", + "nodes": [ + { + "value": 0, + "type": "col", + "details": { + "is_max": true + } + } + ] + }, + { + "value": 6.9975, + "type": "row", + "nodes": [ + { + "value": 12, + "type": "col" + } + ] + } + ] + }, + { + "type": "page", + "nodes": [ + { + "value": 10, + "type": "row", + "nodes": [ + { + "value": 4, + "type": "col", + "details": { + "prop_background_color": "RGB(80, 80, 80)", + "prop_border_color": "RGB(200, 0, 0)", + "prop_border_line_style": "dashed", + "prop_border_thickness": 0.5, + "prop_border_type": 15 + }, + "nodes": [ + { + "value": "string", + "type": "text", + "details": { + "prop_align": "C", + "prop_breakline_strategy": "empty_space_strategy", + "prop_color": "RGB(255, 255, 255)", + "prop_font_family": "arial", + "prop_font_size": 12, + "prop_font_style": "B", + "prop_top": 2 + } + } + ] + }, + { + "value": 4, + "type": "col", + "details": { + "prop_background_color": "RGB(80, 80, 80)", + "prop_border_color": "RGB(200, 0, 0)", + "prop_border_line_style": "dashed", + "prop_border_thickness": 0.5, + "prop_border_type": 15 + }, + "nodes": [ + { + "value": "string", + "type": "text", + "details": { + "prop_align": "C", + "prop_breakline_strategy": "empty_space_strategy", + "prop_color": "RGB(255, 255, 255)", + "prop_font_family": "arial", + "prop_font_size": 12, + "prop_font_style": "B", + "prop_top": 2 + } + } + ] + }, + { + "value": 4, + "type": "col", + "details": { + "prop_background_color": "RGB(80, 80, 80)", + "prop_border_color": "RGB(200, 0, 0)", + "prop_border_line_style": "dashed", + "prop_border_thickness": 0.5, + "prop_border_type": 15 + }, + "nodes": [ + { + "value": "string", + "type": "text", + "details": { + "prop_align": "C", + "prop_breakline_strategy": "empty_space_strategy", + "prop_color": "RGB(255, 255, 255)", + "prop_font_family": "arial", + "prop_font_size": 12, + "prop_font_style": "B", + "prop_top": 2 + } + } + ] + } + ] + }, + { + "value": 10, + "type": "row", + "nodes": [ + { + "value": 0, + "type": "col", + "details": { + "is_max": true + } + } + ] + }, + { + "value": 10, + "type": "row", + "details": { + "prop_background_color": "RGB(220, 220, 220)", + "prop_border_color": "RGB(0, 0, 200)", + "prop_border_type": 4 + }, + "nodes": [ + { + "value": 4, + "type": "col", + "nodes": [ + { + "value": "string", + "type": "text", + "details": { + "prop_align": "C", + "prop_breakline_strategy": "empty_space_strategy", + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 12, + "prop_font_style": "B", + "prop_top": 2 + } + } + ] + }, + { + "value": 4, + "type": "col", + "nodes": [ + { + "value": "string", + "type": "text", + "details": { + "prop_align": "C", + "prop_breakline_strategy": "empty_space_strategy", + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 12, + "prop_font_style": "B", + "prop_top": 2 + } + } + ] + }, + { + "value": 4, + "type": "col", + "nodes": [ + { + "value": "string", + "type": "text", + "details": { + "prop_align": "C", + "prop_breakline_strategy": "empty_space_strategy", + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 12, + "prop_font_style": "B", + "prop_top": 2 + } + } + ] + } + ] + }, + { + "value": 10, + "type": "row", + "nodes": [ + { + "value": 0, + "type": "col", + "details": { + "is_max": true + } + } + ] + }, + { + "value": 10, + "type": "row", + "nodes": [ + { + "value": 4, + "type": "col", + "details": { + "prop_background_color": "RGB(80, 80, 80)", + "prop_border_color": "RGB(200, 0, 0)", + "prop_border_line_style": "dashed", + "prop_border_thickness": 0.5, + "prop_border_type": 15 + }, + "nodes": [ + { + "value": "string", + "type": "text", + "details": { + "prop_align": "C", + "prop_breakline_strategy": "empty_space_strategy", + "prop_color": "RGB(255, 255, 255)", + "prop_font_family": "arial", + "prop_font_size": 12, + "prop_font_style": "B", + "prop_top": 2 + } + } + ] + }, + { + "value": 4, + "type": "col", + "details": { + "prop_background_color": "RGB(80, 80, 80)", + "prop_border_color": "RGB(200, 0, 0)", + "prop_border_line_style": "dashed", + "prop_border_thickness": 0.5, + "prop_border_type": 15 + }, + "nodes": [ + { + "value": "string", + "type": "text", + "details": { + "prop_align": "C", + "prop_breakline_strategy": "empty_space_strategy", + "prop_color": "RGB(255, 255, 255)", + "prop_font_family": "arial", + "prop_font_size": 12, + "prop_font_style": "B", + "prop_top": 2 + } + } + ] + }, + { + "value": 4, + "type": "col", + "details": { + "prop_background_color": "RGB(80, 80, 80)", + "prop_border_color": "RGB(200, 0, 0)", + "prop_border_line_style": "dashed", + "prop_border_thickness": 0.5, + "prop_border_type": 15 + }, + "nodes": [ + { + "value": "string", + "type": "text", + "details": { + "prop_align": "C", + "prop_breakline_strategy": "empty_space_strategy", + "prop_color": "RGB(255, 255, 255)", + "prop_font_family": "arial", + "prop_font_size": 12, + "prop_font_style": "B", + "prop_top": 2 + } + } + ] + } + ] + }, + { + "value": 10, + "type": "row", + "nodes": [ + { + "value": 0, + "type": "col", + "details": { + "is_max": true + } + } + ] + }, + { + "value": 10, + "type": "row", + "details": { + "prop_background_color": "RGB(220, 220, 220)", + "prop_border_color": "RGB(0, 0, 200)", + "prop_border_type": 2 + }, + "nodes": [ + { + "value": 4, + "type": "col", + "nodes": [ + { + "value": "string", + "type": "text", + "details": { + "prop_align": "C", + "prop_breakline_strategy": "empty_space_strategy", + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 12, + "prop_font_style": "B", + "prop_top": 2 + } + } + ] + }, + { + "value": 4, + "type": "col", + "nodes": [ + { + "value": "string", + "type": "text", + "details": { + "prop_align": "C", + "prop_breakline_strategy": "empty_space_strategy", + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 12, + "prop_font_style": "B", + "prop_top": 2 + } + } + ] + }, + { + "value": 4, + "type": "col", + "nodes": [ + { + "value": "string", + "type": "text", + "details": { + "prop_align": "C", + "prop_breakline_strategy": "empty_space_strategy", + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 12, + "prop_font_style": "B", + "prop_top": 2 + } + } + ] + } + ] + }, + { + "value": 10, + "type": "row", + "nodes": [ + { + "value": 0, + "type": "col", + "details": { + "is_max": true + } + } + ] + }, + { + "value": 186.9975, + "type": "row", + "nodes": [ + { + "value": 12, + "type": "col" + } + ] + } + ] + } + ] } \ No newline at end of file