Options Reference

This document provides a comprehensive reference for all configuration options available in Plotance. These options control the appearance, behavior, and content of presentations, charts, and tables. Options can be specified in YAML format within your source documents.

The reference is organized into sections covering data types, general options, chart options, and table options. Each section includes detailed descriptions, default values, and examples.

Table of Contents

Data types

Option values are specified in the following data types:

Additionally, any option can accept null as a value, which resets the option to its default value.

General options

Name Type Default Description
include string

Imports content from an external Markdown or YAML file. When including Markdown files (with extensions .md, .markdown, or .txt), the content is inserted before the current block. For YAML files (with extensions .yaml or .yml), the included file is processed first, followed by the current block.

output string The input filename with extension changed to .pptx

Specifies the output filename.

template string

Specifies the PowerPoint template file to use as the base for the presentation.

data_source string :memory:

Specifies the DuckDB data source to use. This can be either a file path or :memory: for an in-memory database. When this option is specified, the database is opened immediately. If a database is already open, it will be closed before opening the new one.

db_config mapping {}

Defines DuckDB configuration options as key-value pairs. For an open database, these are applied using SET statements. Otherwise, they're specified as options when opening the database. When this option appears multiple times in a file, the mappings are merged. If duplicate keys exist, later values override earlier ones and take effect from that point forward.

slide_level integer 2

Determines how heading levels control slide creation. Headings at or below this level trigger new slides. Specifically: headings at the exact slide_level create regular slides; level 1 headings create title slides (unless slide_level is 1); and headings between level 2 and slide_level create section slides.

rows length-weights

Defines the height of each row in the slide using a colon-separated list of number or length values. Numeric values represent relative height proportions, while length values specify exact heights. Values are assigned to rows sequentially in order of appearance. If there are more rows than specified values, the default value 1 is assigned to the remaining rows. When rows is specified multiple times within a single slide, new values are appended to the existing list of values. The row specifications reset with each new slide; unassigned values do not carry forward.

Example:

<?plotance row_gap: 1cm?>
<?plotance rows: 1:2?>
a

b

c

<?plotance rows: 3cm:3?>
d

In this example, rows a, b, c, and d are assigned values 1, 2, 1, and 3 cm respectively. For a slide with total usable height of 10 cm, Plotance first allocates 3 cm to row d (its explicit length value), then reserves 1 cm for each of the three row gaps (totaling 3 cm). The remaining 4 cm is then distributed among rows a, b, and c according to their relative proportions (1:2:1), resulting in heights of 1 cm, 2 cm, and 1 cm respectively.

columns length-weights 1

Defines the width distribution and count of columns within a row using a colon-separated list of number or length values. Numeric values indicate relative proportions, while length values specify exact widths. Plotance assigns these values sequentially to columns as they appear. When the number of visible content blocks matches the length of this list, a new row automatically begins. You can specify different column configurations for each row. Unlike with rows, if you specify a new columns value in the middle of a row, it completely replaces the previous configuration rather than appending to it. Column specifications reset at the beginning of each new slide.

Width calculations follow the same principles as row height calculations, with column_gap being used to determine spacing between columns.

row_gap length 0

Specifies the vertical spacing between adjacent rows in the slide layout. A value of 0 results in no gap between rows.

column_gap length 0

Defines the horizontal spacing between adjacent columns in the slide layout. A value of 0 results in no gap between columns.

body_horizontal_align horizontal-alignment left

Controls the horizontal text alignment within content blocks. Supports the following values:

  • left (aligns content to the left edge)
  • center (centers content horizontally)
  • right (aligns content to the right edge)
  • justified (spreads text evenly across the width, with the last line left-aligned)
  • distributed (spreads text evenly across the width, including the last line)

Note: justified alignment does not adjust the spacing of the last line, while distributed alignment adjusts the spacing of all lines including the last one.

body_vertical_align vertical-alignment top

Controls the vertical positioning of content within blocks. Accepts the following values:

  • top (aligns content to the top of the container)
  • center (centers content vertically within the container)
  • bottom (aligns content to the bottom of the container)
body_font_scale number 1

Applies a scaling factor to the base body text font size. For example, a value of 1.5 increases the font size by 50%. This setting automatically resets at the beginning of each new slide.

title_font_scale number 1

Applies a scaling factor to the base title font size. For example, a value of 0.8 reduces the font size by 20%. Unlike body font scaling, this setting only affects subsequent slides, not the current one.

language string

Specifies the language for text content using RFC 4646/BCP 47 language codes (for example, en-US, fr-FR, ja-JP). This affects text rendering, hyphenation, and spell-checking behavior in PowerPoint.

query_file string

Specifies a file containing DuckDB SQL queries to execute. When both query_file and query options are provided, the SQL statements in this file are executed first, followed by those in the query option.

query string

Contains inline DuckDB SQL queries to execute. When both query_file and query options are provided, the inline queries specified here are executed after processing the query_file.

parameters parameter+ []

Defines variables that can be referenced throughout the document. This option takes a YAML sequence of parameter objects, each containing a required name key and optional description and default keys (all with string values). The name defines the variable identifier, while default provides an initial value if one isn't explicitly set elsewhere. Parameter values become effective starting from the next block. When using include to import other files, parameters in the included file are processed after variable expansion in the current block, so they don't affect variables referenced in the current block. The description field serves documentation purposes only and doesn't affect processing.

Chart options

General chart options

General chart options control the overall appearance and behavior of the entire chart. These include settings such as format (chart type), series_colors (color palette), line_color (stroke color), and fill_opacity (transparency).

Options with the chart_title_* pattern control the appearance and text of the chart's title.

Axis options

Axis options configure the properties of the X and Y axes, including their scales, labels, titles, and associated gridlines.

Most axis options use a prefix of either x_ or y_ to indicate which axis they affect. Options without these prefixes apply to both axes simultaneously.

The axis range can be configured using *_axis_range_minimum and *_axis_range_maximum options, where * is either x or y.

Axis titles are set using x_axis_title and y_axis_title, while axis_title_* options control the font sizes and colors of both axis titles.

Label formatting is managed through *_axis_label_* options for each axis individually, while axis_label_* options control the font sizes and colors of labels on both axes.

The thickness of axis lines is controlled by x_axis_line_width and y_axis_line_width, while their color is set collectively using axis_line_color.

Tick mark spacing is defined with *_axis_major_unit and *_axis_minor_unit options for major and minor divisions.

For logarithmic scales, x_axis_log_base and y_axis_log_base specify the logarithm base.

Axis direction can be inverted using the x_axis_reversed and y_axis_reversed boolean options.

Gridlines are configured with *_axis_grid_major_width and *_axis_grid_minor_width options to set line thickness, while grid_major_color and grid_minor_color control the colors of major and minor gridlines for both axes.

Legend options

Legend options control the appearance and positioning of the chart legend, which identifies the data series displayed in the chart.

To hide the legend completely, set legend_position to none. Otherwise, you can position the legend at various locations around the chart using options described in the detailed chart options table below.

Data label options

Data label options control the display and formatting of labels that show specific values directly on the data points in your chart.

To disable data labels completely, set data_label_position to none. When enabled, you can configure their position, content format, and appearance using the options described in the detailed chart options table below.

All available chart options

Name Type Default Description
format string bar

Determines the visualization type for the chart. Accepts the following values:

  • bar - Creates a bar chart (default)
  • line - Creates a line chart (implemented as a scatter plot with connected lines)
  • area - Creates an area chart
  • scatter - Creates a scatter plot
  • bubble - Creates a bubble chart
  • none - Suppresses chart rendering completely

When none is specified, the option block won't be counted as a column in the row.

series_colors color+ Theme accent colors

Defines the color palette used for data series in the chart. Colors can be specified using either:

  • Hexadecimal format: #RGB or #RRGGBB where R, G, and B are hexadecimal digits representing the red, green, and blue components in the sRGB color space
  • Theme color keywords:
    • dark1 - Primary dark theme color
    • dark2 - Secondary dark theme color
    • accent1 through accent6 - Theme accent colors 1-6
    • hyperlink - Theme hyperlink color
    • followed_hyperlink - Theme color for visited hyperlinks

Colors can be specified either as a YAML sequence of values or as a comma-separated string list.

Note: In YAML syntax, the # character begins a comment, so hexadecimal color values must be enclosed in double quotes (e.g., "#FF0000").

group_by_series boolean false

Controls the organization of data in the chart. When set to true, the first column is interpreted as series names, and subsequent columns become categories within each series.

Note: This feature is not yet implemented.

bar_grouping string clustered

Determines the arrangement of bars within a bar chart. Accepts the following values:

  • clustered - Positions bars from different series side by side (default)
  • stacked - Stacks bars from different series on top of each other
  • percent_stacked - Stacks bars and normalizes each stack to 100%, showing proportional contributions

This option only applies to bar charts.

bar_direction string vertical

Controls the orientation of bars in bar charts. Accepts the following values:

  • vertical - Renders bars growing upward from the x-axis (default)
  • horizontal - Renders bars growing rightward from the y-axis

This option only applies to bar charts.

bar_gap integer 20

Sets the spacing between adjacent groups of bars, expressed as a percentage of the bar width. Valid values range from 0 (no gap) to 500 (very large gaps).

This option only applies to bar charts.

bar_overlap integer 0 for clustered bar charts, 100 for stacked/percent_stacked bar charts

Controls how bars within the same category group overlap or separate from each other, expressed as a percentage of the bar width. Valid values range from -100 to 100:

  • 0: Bars are positioned adjacent to each other without overlap or gap (default for clustered bar charts)
  • 100: Bars completely overlap (default for stacked/percent_stacked bar charts)
  • Negative values: Creates additional spacing between bars within the same group

This option only applies to bar charts.

line_width length 1pt for line charts, 0 for others

Controls the thickness of linear elements in the chart. For line charts, this determines the width of the data lines. For other chart types, it specifies the border width of visual elements such as bars, areas, or markers.

line_color color or auto

Defines the color of linear elements in the chart. When set to auto or left unspecified, colors are automatically assigned from the series_colors palette for each data series.

fill_opacity number 1

Controls the transparency level of filled regions in the chart. Values range from 0 (completely transparent) to 1 (completely opaque). This setting particularly affects area charts and other chart types with filled elements such as bars or bubble markers.

chart_title string

Specifies the text to display as the chart's title, positioned above the chart area. When left unspecified, no title will be rendered.

chart_title_font_size length 18pt

Sets the font size for the chart title text.

chart_title_color color

Defines the text color for the chart title. When unspecified, the default color from the active theme is used.

x_axis_range_minimum number, date, time, date-time, or auto auto

Defines the lower boundary value for the X-axis range. When set to auto or left unspecified, this value is calculated automatically based on the dataset's minimum value.

For date and time values, use the following formats:

  • Date: yyyy-MM-dd
  • Time: HH:mm[:ss[.SSS]] (you cannot omit minutes)
  • Date-time: yyyy-MM-dd[THH[:mm[:ss[.SSS]]]] where the separator T can be represented as T, t, or a space character
x_axis_range_maximum number, date, time, date-time, or auto auto

Defines the upper boundary value for the X-axis range. When set to auto or left unspecified, this value is calculated automatically based on the dataset's maximum value.

For date and time values, use the following formats:

  • Date: yyyy-MM-dd
  • Time: HH:mm[:ss[.SSS]] (you cannot omit minutes)
  • Date-time: yyyy-MM-dd[THH[:mm[:ss[.SSS]]]] where the separator T can be represented as T, t, or a space character
x_axis_title string

Specifies the descriptive text to display below the X-axis. When left unspecified, no axis title will be rendered.

x_axis_label_format string auto

Controls the display format of X-axis tick labels using Excel format codes. When set to auto, the format is automatically determined based on the data type.

x_axis_label_rotate number 0

Sets the rotation angle for X-axis labels, specified in degrees. Positive values produce clockwise rotation.

x_axis_line_width length 1pt

Controls the thickness of the X-axis line. Setting this value to 0 effectively hides the axis line.

x_axis_major_unit axis-unit

Defines the interval between major tick marks on the X-axis. When left unspecified, the interval is calculated automatically based on the data range. For temporal data, the value can include appropriate time units (days, hours, minutes/mins, seconds/secs, or their singular forms).

x_axis_minor_unit axis-unit

Defines the interval between minor tick marks on the X-axis. When left unspecified, the interval is calculated automatically. For temporal data, the value can include appropriate time units (days, hours, minutes/mins, seconds/secs, or their singular forms).

x_axis_log_base number

Enables logarithmic scaling for the X-axis using the specified base value. When this option is set, the axis will display values on a logarithmic scale.

x_axis_reversed boolean false

Controls the direction of the X-axis. When set to true, the axis direction is reversed (right-to-left instead of the standard left-to-right).

x_axis_grid_major_width length 0

Defines the thickness of major gridlines associated with the X-axis. Setting this value to 0 will hide major gridlines completely.

x_axis_grid_minor_width length 0

Controls the thickness of minor gridlines associated with the X-axis. Setting this value to 0 will hide minor gridlines completely.

y_axis_range_minimum number, date, time, date-time, or auto auto

Defines the lower boundary value for the Y-axis range. When set to auto or left unspecified, this value is calculated automatically based on the dataset's minimum value.

For date and time values, use the following formats:

  • Date: yyyy-MM-dd
  • Time: HH:mm[:ss[.SSS]] (you cannot omit minutes)
  • Date-time: yyyy-MM-dd[THH[:mm[:ss[.SSS]]]] where the separator T can be represented as T, t, or a space character
y_axis_range_maximum number, date, time, date-time, or auto auto

Defines the upper boundary value for the Y-axis range. When set to auto or left unspecified, this value is calculated automatically based on the dataset's maximum value.

For date and time values, use the following formats:

  • Date: yyyy-MM-dd
  • Time: HH:mm[:ss[.SSS]] (you cannot omit minutes)
  • Date-time: yyyy-MM-dd[THH[:mm[:ss[.SSS]]]] where the separator T can be represented as T, t, or a space character
y_axis_title string

Specifies the descriptive text to display alongside the Y-axis. When left unspecified, no axis title will be rendered.

y_axis_label_format string auto

Controls the display format of Y-axis tick labels using Excel format codes. When set to auto, the format is automatically determined based on the data type.

y_axis_label_rotate number 0

Sets the rotation angle for Y-axis labels, specified in degrees. Positive values produce clockwise rotation.

y_axis_line_width length 1pt

Controls the thickness of the Y-axis line. Setting this value to 0 effectively hides the axis line.

y_axis_major_unit axis-unit

Defines the interval between major tick marks on the Y-axis. When left unspecified, the interval is calculated automatically based on the data range. For temporal data, the value can include appropriate time units (days, hours, minutes/mins, seconds/secs, or their singular forms).

y_axis_minor_unit axis-unit

Defines the interval between minor tick marks on the Y-axis. When left unspecified, the interval is calculated automatically. For temporal data, the value can include appropriate time units (days, hours, minutes/mins, seconds/secs, or their singular forms).

y_axis_log_base number

Enables logarithmic scaling for the Y-axis using the specified base value. When this option is set, the axis will display values on a logarithmic scale rather than a linear one.

y_axis_reversed boolean false

Controls the direction of the Y-axis. When set to true, the axis direction is reversed (top-to-bottom instead of the standard bottom-to-top).

y_axis_grid_major_width length 0

Defines the thickness of major gridlines associated with the Y-axis. Setting this value to 0 will hide major gridlines completely.

y_axis_grid_minor_width length 0

Controls the thickness of minor gridlines associated with the Y-axis. Setting this value to 0 will hide minor gridlines completely.

axis_title_font_size length 14pt

Sets the font size for all axis titles in the chart.

axis_title_color color

Defines the text color for all axis titles in the chart. When left unspecified, the default color from the active theme is used.

axis_label_font_size length 14pt

Controls the font size for all axis tick labels in the chart.

axis_label_color color

Defines the text color for all axis tick labels in the chart. When left unspecified, the default color from the active theme is used.

axis_line_color color dark1

Specifies the color for all axis lines in the chart.

grid_major_color color dark1

Controls the color of all major gridlines in the chart.

grid_minor_color color dark1

Controls the color of all minor gridlines in the chart.

legend_position string right

Defines the position of the legend relative to the chart area. The following values are supported:

  • top - Positions the legend above the chart area
  • bottom - Positions the legend below the chart area
  • left - Positions the legend to the left of the chart area
  • right - Positions the legend to the right of the chart area (default)
  • top_right - Positions the legend in the top-right corner of the chart area
  • none - Hides the legend completely
legend_line_width length 0

Controls the thickness of the border surrounding the legend box. Setting this value to 0 removes the border completely.

legend_line_color color dark1

Specifies the color of the border surrounding the legend box.

legend_font_size length 14pt

Controls the font size of all text entries within the legend.

legend_color color

Defines the text color for all entries in the legend. When unspecified, the default color from the active theme is used.

data_label_position string none

Controls the placement of data value labels relative to each data point on the chart.

For bar charts, the following positions are supported:

  • none - Disables data labels entirely (default)
  • center - Places labels in the center of each bar
  • inside_center - Alias of center
  • inside_end - Places labels inside each bar, near the end point
  • inside_base - Places labels inside each bar, near the base point
  • outside_end - Places labels outside each bar, near the end point

For scatter, bubble, or line charts, the following positions are supported:

  • none - Disables data labels entirely (default)
  • center - Centers labels on each data point
  • left - Positions labels to the left of each data point
  • right - Positions labels to the right of each data point
  • above - Positions labels above each data point
  • below - Positions labels below each data point

Note: Area charts do not support data label positioning. Although inside_center and center values are accepted, they have no effect.

data_label_contents string+ value

Specifies what information to display in data labels. This can be provided as either a list of strings or a comma-separated string value. The following content types are supported:

  • x_value - Shows the X-axis value
  • y_value - Shows the Y-axis value (default)
  • legend_key - Shows the legend key identifying the data series
  • series_name - Shows the full name of the data series
  • percent - Shows the data point as a percentage of the total
  • bubble_size - Shows the size value for the bubble
data_label_format string auto

Controls the display format of data labels using Excel format codes. When set to auto, the format is automatically determined based on the data type.

data_label_rotate number 0

Sets the rotation angle for all data labels, specified in degrees. Positive values produce clockwise rotation.

data_label_font_size length 14pt

Controls the font size of all data labels in the chart.

data_label_color color

Defines the text color for all data labels in the chart. When left unspecified, the default color from the active theme is used.

marker_size length 5pt

Controls the diameter of data point markers in line and scatter plots. Setting this value to 0 will hide markers completely.

Note: This option only affects line and scatter plots. It has no effect on other chart types.

marker_line_width length 0 for scatter plots, line_width for bubble charts

Defines the thickness of the border surrounding each marker. Setting this value to 0 removes the border completely.

marker_fill_opacity number 1 for scatter plots, fill_opacity for bubble charts

Controls the transparency level of marker fill colors. Values range from 0 (completely transparent) to 1 (completely opaque).

Table options

The table_rows and table_columns options control the number and size of rows and columns in the table. Additional styling options can be applied to specific regions of the table. These regions are identified by the following prefixes:

Each table region can be styled using the following option patterns, where * is replaced by the region name:

Name Type Default Description
table_rows length-weights

Controls the height distribution of rows within a table using a colon-separated list of number or length values. Numeric values indicate relative proportions, while length values specify exact heights. These values are assigned sequentially to all rows, including the header row. If there are more rows than specified values, the default value 1 is assigned to any remaining rows.

Example: With table_rows: 1:2:3cm applied to a table containing 4 rows, the values 1, 2, 3 cm, and 1 are assigned to the rows in order. In a table with 7 cm total height, Plotance first allocates 3 cm to the third row (its explicit length value). The remaining 4 cm is then distributed among the first, second, and fourth rows according to their relative proportions (1:2:1), resulting in heights of 1 cm, 2 cm, and 1 cm respectively.

table_columns length-weights

Controls the width distribution of columns within a table using a colon-separated list of number or length values. Numeric values indicate relative proportions, while length values specify exact widths. These values are assigned sequentially to columns as they appear in the table. If there are more columns than specified values, the default value 1 is assigned to any remaining columns.

Width calculations follow the same principles as row height calculations. Explicit length values are allocated first, and then any remaining space is distributed proportionally according to the relative numeric values.

table_background_color color

Sets the background color for cells in the table.

table_left_border_width length 1pt

Sets the width of the left border for the table.

table_left_border_color color

Defines the color of the left border for the table.

table_left_border_style string

Specifies the style of the left border for the table. Valid values:

  • single - Single line border
  • double - Double line border
  • thick_thin - Thick line on the right, thin on the left
  • thin_thick - Thin line on the right, thick on the left
  • triple - Three parallel lines border

Note: Border styles are not supported in PowerPoint for the web.

table_right_border_width length 1pt

Sets the width of the right border for the table.

table_right_border_color color

Defines the color of the right border for the table.

table_right_border_style string

Specifies the style of the right border for the table. Valid values:

  • single - Single line border
  • double - Double line border
  • thick_thin - Thick line on the right, thin on the left
  • thin_thick - Thin line on the right, thick on the left
  • triple - Three parallel lines border

Note: Border styles are not supported in PowerPoint for the web.

table_top_border_width length 1pt

Sets the width of the top border for the table.

table_top_border_color color

Defines the color of the top border for the table.

table_top_border_style string

Specifies the style of the top border for the table. Valid values:

  • single - Single line border
  • double - Double line border
  • thick_thin - Thick line on the top, thin on the bottom
  • thin_thick - Thin line on the top, thick on the bottom
  • triple - Three parallel lines border

Note: Border styles are not supported in PowerPoint for the web.

table_bottom_border_width length 1pt

Sets the width of the bottom border for the table.

table_bottom_border_color color

Defines the color of the bottom border for the table.

table_bottom_border_style string

Specifies the style of the bottom border for the table. Valid values:

  • single - Single line border
  • double - Double line border
  • thick_thin - Thick line on the top, thin on the bottom
  • thin_thick - Thin line on the top, thick on the bottom
  • triple - Three parallel lines border

Note: Border styles are not supported in PowerPoint for the web.

table_inside_horizontal_border_width length 1pt

Sets the width of the horizontal interior borders for the table.

table_inside_horizontal_border_color color

Defines the color of the horizontal interior borders for the table.

table_inside_horizontal_border_style string

Specifies the style of the horizontal interior borders for the table. Valid values:

  • single - Single line border
  • double - Double line border
  • thick_thin - Thick line on the top, thin on the bottom
  • thin_thick - Thin line on the top, thick on the bottom
  • triple - Three parallel lines border

Note: Border styles are not supported in PowerPoint for the web.

table_inside_vertical_border_width length 1pt

Sets the width of the vertical interior borders for the table.

table_inside_vertical_border_color color

Defines the color of the vertical interior borders for the table.

table_inside_vertical_border_style string

Specifies the style of the vertical interior borders for the table. Valid values:

  • single - Single line border
  • double - Double line border
  • thick_thin - Thick line on the right, thin on the left
  • thin_thick - Thin line on the right, thick on the left
  • triple - Three parallel lines border

Note: Border styles are not supported in PowerPoint for the web.

table_font_weight string

Specifies the font weight for text in the table. Valid values:

  • normal - Regular weight
  • bold - Bold weight
table_font_color color

Defines the text color for content in the table.

table_cell_left_margin length 1/4 of the font size

Sets the left margin for cell content in the table.

table_cell_right_margin length 1/4 of the font size

Sets the right margin for cell content in the table.

table_cell_top_margin length 1/4 of the font size

Sets the top margin for cell content in the table.

table_cell_bottom_margin length 1/4 of the font size

Sets the bottom margin for cell content in the table.

table_cell_horizontal_align string left

Controls the horizontal alignment of content in the table. Valid values:

  • left - Aligns text to the left
  • center - Centers text horizontally
  • right - Aligns text to the right
  • justified - Justifies text with last line left-aligned
  • distributed - Distributes text evenly including the last line

Note: justified does not adjust spacing of the last line, while distributed adjusts spacing of all lines including the last one.

table_cell_vertical_align string top

Controls the vertical alignment of content in the table. Valid values:

  • top - Aligns content to the top of the cell
  • center - Centers content vertically
  • bottom - Aligns content to the bottom of the cell
first_row_background_color color accent1

Sets the background color for cells in the first row (header).

first_row_left_border_width length 1pt

Sets the width of the left border for the first row (header).

first_row_left_border_color color

Defines the color of the left border for the first row (header).

first_row_left_border_style string

Specifies the style of the left border for the first row (header). Valid values:

  • single - Single line border
  • double - Double line border
  • thick_thin - Thick line on the right, thin on the left
  • thin_thick - Thin line on the right, thick on the left
  • triple - Three parallel lines border

Note: Border styles are not supported in PowerPoint for the web.

first_row_right_border_width length 1pt

Sets the width of the right border for the first row (header).

first_row_right_border_color color

Defines the color of the right border for the first row (header).

first_row_right_border_style string

Specifies the style of the right border for the first row (header). Valid values:

  • single - Single line border
  • double - Double line border
  • thick_thin - Thick line on the right, thin on the left
  • thin_thick - Thin line on the right, thick on the left
  • triple - Three parallel lines border

Note: Border styles are not supported in PowerPoint for the web.

first_row_top_border_width length 1pt

Sets the width of the top border for the first row (header).

first_row_top_border_color color

Defines the color of the top border for the first row (header).

first_row_top_border_style string

Specifies the style of the top border for the first row (header). Valid values:

  • single - Single line border
  • double - Double line border
  • thick_thin - Thick line on the top, thin on the bottom
  • thin_thick - Thin line on the top, thick on the bottom
  • triple - Three parallel lines border

Note: Border styles are not supported in PowerPoint for the web.

first_row_bottom_border_width length 1pt

Sets the width of the bottom border for the first row (header).

first_row_bottom_border_color color

Defines the color of the bottom border for the first row (header).

first_row_bottom_border_style string

Specifies the style of the bottom border for the first row (header). Valid values:

  • single - Single line border
  • double - Double line border
  • thick_thin - Thick line on the top, thin on the bottom
  • thin_thick - Thin line on the top, thick on the bottom
  • triple - Three parallel lines border

Note: Border styles are not supported in PowerPoint for the web.

first_row_inside_vertical_border_width length 1pt

Sets the width of the vertical interior borders for the first row (header).

first_row_inside_vertical_border_color color

Defines the color of the vertical interior borders for the first row (header).

first_row_inside_vertical_border_style string

Specifies the style of the vertical interior borders for the first row (header). Valid values:

  • single - Single line border
  • double - Double line border
  • thick_thin - Thick line on the right, thin on the left
  • thin_thick - Thin line on the right, thick on the left
  • triple - Three parallel lines border

Note: Border styles are not supported in PowerPoint for the web.

first_row_font_weight string bold

Specifies the font weight for text in the first row (header). Valid values:

  • normal - Regular weight
  • bold - Bold weight
first_row_font_color color light1

Defines the text color for content in the first row (header).

first_row_cell_left_margin length 1/4 of the font size

Sets the left margin for cell content in the first row (header).

first_row_cell_right_margin length 1/4 of the font size

Sets the right margin for cell content in the first row (header).

first_row_cell_top_margin length 1/4 of the font size

Sets the top margin for cell content in the first row (header).

first_row_cell_bottom_margin length 1/4 of the font size

Sets the bottom margin for cell content in the first row (header).

first_row_cell_horizontal_align string left

Controls the horizontal alignment of content in the first row (header). Valid values:

  • left - Aligns text to the left
  • center - Centers text horizontally
  • right - Aligns text to the right
  • justified - Justifies text with last line left-aligned
  • distributed - Distributes text evenly including the last line

Note: justified does not adjust spacing of the last line, while distributed adjusts spacing of all lines including the last one.

first_row_cell_vertical_align string top

Controls the vertical alignment of content in the first row (header). Valid values:

  • top - Aligns content to the top of the cell
  • center - Centers content vertically
  • bottom - Aligns content to the bottom of the cell
first_column_background_color color

Sets the background color for cells in the first column.

first_column_left_border_width length 1pt

Sets the width of the left border for the first column.

first_column_left_border_color color

Defines the color of the left border for the first column.

first_column_left_border_style string

Specifies the style of the left border for the first column. Valid values:

  • single - Single line border
  • double - Double line border
  • thick_thin - Thick line on the right, thin on the left
  • thin_thick - Thin line on the right, thick on the left
  • triple - Three parallel lines border

Note: Border styles are not supported in PowerPoint for the web.

first_column_right_border_width length 1pt

Sets the width of the right border for the first column.

first_column_right_border_color color

Defines the color of the right border for the first column.

first_column_right_border_style string

Specifies the style of the right border for the first column. Valid values:

  • single - Single line border
  • double - Double line border
  • thick_thin - Thick line on the right, thin on the left
  • thin_thick - Thin line on the right, thick on the left
  • triple - Three parallel lines border

Note: Border styles are not supported in PowerPoint for the web.

first_column_top_border_width length 1pt

Sets the width of the top border for the first column.

first_column_top_border_color color

Defines the color of the top border for the first column.

first_column_top_border_style string

Specifies the style of the top border for the first column. Valid values:

  • single - Single line border
  • double - Double line border
  • thick_thin - Thick line on the top, thin on the bottom
  • thin_thick - Thin line on the top, thick on the bottom
  • triple - Three parallel lines border

Note: Border styles are not supported in PowerPoint for the web.

first_column_bottom_border_width length 1pt

Sets the width of the bottom border for the first column.

first_column_bottom_border_color color

Defines the color of the bottom border for the first column.

first_column_bottom_border_style string

Specifies the style of the bottom border for the first column. Valid values:

  • single - Single line border
  • double - Double line border
  • thick_thin - Thick line on the top, thin on the bottom
  • thin_thick - Thin line on the top, thick on the bottom
  • triple - Three parallel lines border

Note: Border styles are not supported in PowerPoint for the web.

first_column_inside_horizontal_border_width length 1pt

Sets the width of the horizontal interior borders for the first column.

first_column_inside_horizontal_border_color color

Defines the color of the horizontal interior borders for the first column.

first_column_inside_horizontal_border_style string

Specifies the style of the horizontal interior borders for the first column. Valid values:

  • single - Single line border
  • double - Double line border
  • thick_thin - Thick line on the top, thin on the bottom
  • thin_thick - Thin line on the top, thick on the bottom
  • triple - Three parallel lines border

Note: Border styles are not supported in PowerPoint for the web.

first_column_font_weight string

Specifies the font weight for text in the first column. Valid values:

  • normal - Regular weight
  • bold - Bold weight
first_column_font_color color

Defines the text color for content in the first column.

first_column_cell_left_margin length 1/4 of the font size

Sets the left margin for cell content in the first column.

first_column_cell_right_margin length 1/4 of the font size

Sets the right margin for cell content in the first column.

first_column_cell_top_margin length 1/4 of the font size

Sets the top margin for cell content in the first column.

first_column_cell_bottom_margin length 1/4 of the font size

Sets the bottom margin for cell content in the first column.

first_column_cell_horizontal_align string left

Controls the horizontal alignment of content in the first column. Valid values:

  • left - Aligns text to the left
  • center - Centers text horizontally
  • right - Aligns text to the right
  • justified - Justifies text with last line left-aligned
  • distributed - Distributes text evenly including the last line

Note: justified does not adjust spacing of the last line, while distributed adjusts spacing of all lines including the last one.

first_column_cell_vertical_align string top

Controls the vertical alignment of content in the first column. Valid values:

  • top - Aligns content to the top of the cell
  • center - Centers content vertically
  • bottom - Aligns content to the bottom of the cell
last_row_background_color color

Sets the background color for cells in the last row.

last_row_left_border_width length 1pt

Sets the width of the left border for the last row.

last_row_left_border_color color

Defines the color of the left border for the last row.

last_row_left_border_style string

Specifies the style of the left border for the last row. Valid values:

  • single - Single line border
  • double - Double line border
  • thick_thin - Thick line on the right, thin on the left
  • thin_thick - Thin line on the right, thick on the left
  • triple - Three parallel lines border

Note: Border styles are not supported in PowerPoint for the web.

last_row_right_border_width length 1pt

Sets the width of the right border for the last row.

last_row_right_border_color color

Defines the color of the right border for the last row.

last_row_right_border_style string

Specifies the style of the right border for the last row. Valid values:

  • single - Single line border
  • double - Double line border
  • thick_thin - Thick line on the right, thin on the left
  • thin_thick - Thin line on the right, thick on the left
  • triple - Three parallel lines border

Note: Border styles are not supported in PowerPoint for the web.

last_row_top_border_width length 1pt

Sets the width of the top border for the last row.

last_row_top_border_color color

Defines the color of the top border for the last row.

last_row_top_border_style string

Specifies the style of the top border for the last row. Valid values:

  • single - Single line border
  • double - Double line border
  • thick_thin - Thick line on the top, thin on the bottom
  • thin_thick - Thin line on the top, thick on the bottom
  • triple - Three parallel lines border

Note: Border styles are not supported in PowerPoint for the web.

last_row_bottom_border_width length 1pt

Sets the width of the bottom border for the last row.

last_row_bottom_border_color color

Defines the color of the bottom border for the last row.

last_row_bottom_border_style string

Specifies the style of the bottom border for the last row. Valid values:

  • single - Single line border
  • double - Double line border
  • thick_thin - Thick line on the top, thin on the bottom
  • thin_thick - Thin line on the top, thick on the bottom
  • triple - Three parallel lines border

Note: Border styles are not supported in PowerPoint for the web.

last_row_inside_vertical_border_width length 1pt

Sets the width of the vertical interior borders for the last row.

last_row_inside_vertical_border_color color

Defines the color of the vertical interior borders for the last row.

last_row_inside_vertical_border_style string

Specifies the style of the vertical interior borders for the last row. Valid values:

  • single - Single line border
  • double - Double line border
  • thick_thin - Thick line on the right, thin on the left
  • thin_thick - Thin line on the right, thick on the left
  • triple - Three parallel lines border

Note: Border styles are not supported in PowerPoint for the web.

last_row_font_weight string

Specifies the font weight for text in the last row. Valid values:

  • normal - Regular weight
  • bold - Bold weight
last_row_font_color color

Defines the text color for content in the last row.

last_row_cell_left_margin length 1/4 of the font size

Sets the left margin for cell content in the last row.

last_row_cell_right_margin length 1/4 of the font size

Sets the right margin for cell content in the last row.

last_row_cell_top_margin length 1/4 of the font size

Sets the top margin for cell content in the last row.

last_row_cell_bottom_margin length 1/4 of the font size

Sets the bottom margin for cell content in the last row.

last_row_cell_horizontal_align string left

Controls the horizontal alignment of content in the last row. Valid values:

  • left - Aligns text to the left
  • center - Centers text horizontally
  • right - Aligns text to the right
  • justified - Justifies text with last line left-aligned
  • distributed - Distributes text evenly including the last line

Note: justified does not adjust spacing of the last line, while distributed adjusts spacing of all lines including the last one.

last_row_cell_vertical_align string top

Controls the vertical alignment of content in the last row. Valid values:

  • top - Aligns content to the top of the cell
  • center - Centers content vertically
  • bottom - Aligns content to the bottom of the cell
last_column_background_color color

Sets the background color for cells in the last column.

last_column_left_border_width length 1pt

Sets the width of the left border for the last column.

last_column_left_border_color color

Defines the color of the left border for the last column.

last_column_left_border_style string

Specifies the style of the left border for the last column. Valid values:

  • single - Single line border
  • double - Double line border
  • thick_thin - Thick line on the right, thin on the left
  • thin_thick - Thin line on the right, thick on the left
  • triple - Three parallel lines border

Note: Border styles are not supported in PowerPoint for the web.

last_column_right_border_width length 1pt

Sets the width of the right border for the last column.

last_column_right_border_color color

Defines the color of the right border for the last column.

last_column_right_border_style string

Specifies the style of the right border for the last column. Valid values:

  • single - Single line border
  • double - Double line border
  • thick_thin - Thick line on the right, thin on the left
  • thin_thick - Thin line on the right, thick on the left
  • triple - Three parallel lines border

Note: Border styles are not supported in PowerPoint for the web.

last_column_top_border_width length 1pt

Sets the width of the top border for the last column.

last_column_top_border_color color

Defines the color of the top border for the last column.

last_column_top_border_style string

Specifies the style of the top border for the last column. Valid values:

  • single - Single line border
  • double - Double line border
  • thick_thin - Thick line on the top, thin on the bottom
  • thin_thick - Thin line on the top, thick on the bottom
  • triple - Three parallel lines border

Note: Border styles are not supported in PowerPoint for the web.

last_column_bottom_border_width length 1pt

Sets the width of the bottom border for the last column.

last_column_bottom_border_color color

Defines the color of the bottom border for the last column.

last_column_bottom_border_style string

Specifies the style of the bottom border for the last column. Valid values:

  • single - Single line border
  • double - Double line border
  • thick_thin - Thick line on the top, thin on the bottom
  • thin_thick - Thin line on the top, thick on the bottom
  • triple - Three parallel lines border

Note: Border styles are not supported in PowerPoint for the web.

last_column_inside_horizontal_border_width length 1pt

Sets the width of the horizontal interior borders for the last column.

last_column_inside_horizontal_border_color color

Defines the color of the horizontal interior borders for the last column.

last_column_inside_horizontal_border_style string

Specifies the style of the horizontal interior borders for the last column. Valid values:

  • single - Single line border
  • double - Double line border
  • thick_thin - Thick line on the top, thin on the bottom
  • thin_thick - Thin line on the top, thick on the bottom
  • triple - Three parallel lines border

Note: Border styles are not supported in PowerPoint for the web.

last_column_font_weight string

Specifies the font weight for text in the last column. Valid values:

  • normal - Regular weight
  • bold - Bold weight
last_column_font_color color

Defines the text color for content in the last column.

last_column_cell_left_margin length 1/4 of the font size

Sets the left margin for cell content in the last column.

last_column_cell_right_margin length 1/4 of the font size

Sets the right margin for cell content in the last column.

last_column_cell_top_margin length 1/4 of the font size

Sets the top margin for cell content in the last column.

last_column_cell_bottom_margin length 1/4 of the font size

Sets the bottom margin for cell content in the last column.

last_column_cell_horizontal_align string left

Controls the horizontal alignment of content in the last column. Valid values:

  • left - Aligns text to the left
  • center - Centers text horizontally
  • right - Aligns text to the right
  • justified - Justifies text with last line left-aligned
  • distributed - Distributes text evenly including the last line

Note: justified does not adjust spacing of the last line, while distributed adjusts spacing of all lines including the last one.

last_column_cell_vertical_align string top

Controls the vertical alignment of content in the last column. Valid values:

  • top - Aligns content to the top of the cell
  • center - Centers content vertically
  • bottom - Aligns content to the bottom of the cell
band1_row_background_color color

Sets the background color for cells in the odd rows (counting from 1).

band1_row_left_border_width length 1pt

Sets the width of the left borders for the odd rows (counting from 1).

band1_row_left_border_color color

Defines the color of the left borders for the odd rows (counting from 1).

band1_row_left_border_style string

Specifies the style of the left borders for the odd rows (counting from 1). Valid values:

  • single - Single line border
  • double - Double line border
  • thick_thin - Thick line on the right, thin on the left
  • thin_thick - Thin line on the right, thick on the left
  • triple - Three parallel lines border

Note: Border styles are not supported in PowerPoint for the web.

band1_row_right_border_width length 1pt

Sets the width of the right borders for the odd rows (counting from 1).

band1_row_right_border_color color

Defines the color of the right borders for the odd rows (counting from 1).

band1_row_right_border_style string

Specifies the style of the right borders for the odd rows (counting from 1). Valid values:

  • single - Single line border
  • double - Double line border
  • thick_thin - Thick line on the right, thin on the left
  • thin_thick - Thin line on the right, thick on the left
  • triple - Three parallel lines border

Note: Border styles are not supported in PowerPoint for the web.

band1_row_top_border_width length 1pt

Sets the width of the top borders for the odd rows (counting from 1).

band1_row_top_border_color color

Defines the color of the top borders for the odd rows (counting from 1).

band1_row_top_border_style string

Specifies the style of the top borders for the odd rows (counting from 1). Valid values:

  • single - Single line border
  • double - Double line border
  • thick_thin - Thick line on the top, thin on the bottom
  • thin_thick - Thin line on the top, thick on the bottom
  • triple - Three parallel lines border

Note: Border styles are not supported in PowerPoint for the web.

band1_row_bottom_border_width length 1pt

Sets the width of the bottom borders for the odd rows (counting from 1).

band1_row_bottom_border_color color

Defines the color of the bottom borders for the odd rows (counting from 1).

band1_row_bottom_border_style string

Specifies the style of the bottom borders for the odd rows (counting from 1). Valid values:

  • single - Single line border
  • double - Double line border
  • thick_thin - Thick line on the top, thin on the bottom
  • thin_thick - Thin line on the top, thick on the bottom
  • triple - Three parallel lines border

Note: Border styles are not supported in PowerPoint for the web.

band1_row_inside_vertical_border_width length 1pt

Sets the width of the vertical interior borders for the odd rows (counting from 1).

band1_row_inside_vertical_border_color color

Defines the color of the vertical interior borders for the odd rows (counting from 1).

band1_row_inside_vertical_border_style string

Specifies the style of the vertical interior borders for the odd rows (counting from 1). Valid values:

  • single - Single line border
  • double - Double line border
  • thick_thin - Thick line on the right, thin on the left
  • thin_thick - Thin line on the right, thick on the left
  • triple - Three parallel lines border

Note: Border styles are not supported in PowerPoint for the web.

band1_row_font_weight string

Specifies the font weight for text in the odd rows (counting from 1). Valid values:

  • normal - Regular weight
  • bold - Bold weight
band1_row_font_color color

Defines the text color for content in the odd rows (counting from 1).

band1_row_cell_left_margin length 1/4 of the font size

Sets the left margin for cell content in the odd rows (counting from 1).

band1_row_cell_right_margin length 1/4 of the font size

Sets the right margin for cell content in the odd rows (counting from 1).

band1_row_cell_top_margin length 1/4 of the font size

Sets the top margin for cell content in the odd rows (counting from 1).

band1_row_cell_bottom_margin length 1/4 of the font size

Sets the bottom margin for cell content in the odd rows (counting from 1).

band1_row_cell_horizontal_align string left

Controls the horizontal alignment of content in the odd rows (counting from 1). Valid values:

  • left - Aligns text to the left
  • center - Centers text horizontally
  • right - Aligns text to the right
  • justified - Justifies text with last line left-aligned
  • distributed - Distributes text evenly including the last line

Note: justified does not adjust spacing of the last line, while distributed adjusts spacing of all lines including the last one.

band1_row_cell_vertical_align string top

Controls the vertical alignment of content in the odd rows (counting from 1). Valid values:

  • top - Aligns content to the top of the cell
  • center - Centers content vertically
  • bottom - Aligns content to the bottom of the cell
band1_column_background_color color

Sets the background color for cells in the odd columns (counting from 1).

band1_column_left_border_width length 1pt

Sets the width of the left borders for the odd columns (counting from 1).

band1_column_left_border_color color

Defines the color of the left borders for the odd columns (counting from 1).

band1_column_left_border_style string

Specifies the style of the left borders for the odd columns (counting from 1). Valid values:

  • single - Single line border
  • double - Double line border
  • thick_thin - Thick line on the right, thin on the left
  • thin_thick - Thin line on the right, thick on the left
  • triple - Three parallel lines border

Note: Border styles are not supported in PowerPoint for the web.

band1_column_right_border_width length 1pt

Sets the width of the right borders for the odd columns (counting from 1).

band1_column_right_border_color color

Defines the color of the right borders for the odd columns (counting from 1).

band1_column_right_border_style string

Specifies the style of the right borders for the odd columns (counting from 1). Valid values:

  • single - Single line border
  • double - Double line border
  • thick_thin - Thick line on the right, thin on the left
  • thin_thick - Thin line on the right, thick on the left
  • triple - Three parallel lines border

Note: Border styles are not supported in PowerPoint for the web.

band1_column_top_border_width length 1pt

Sets the width of the top borders for the odd columns (counting from 1).

band1_column_top_border_color color

Defines the color of the top borders for the odd columns (counting from 1).

band1_column_top_border_style string

Specifies the style of the top borders for the odd columns (counting from 1). Valid values:

  • single - Single line border
  • double - Double line border
  • thick_thin - Thick line on the top, thin on the bottom
  • thin_thick - Thin line on the top, thick on the bottom
  • triple - Three parallel lines border

Note: Border styles are not supported in PowerPoint for the web.

band1_column_bottom_border_width length 1pt

Sets the width of the bottom borders for the odd columns (counting from 1).

band1_column_bottom_border_color color

Defines the color of the bottom borders for the odd columns (counting from 1).

band1_column_bottom_border_style string

Specifies the style of the bottom borders for the odd columns (counting from 1). Valid values:

  • single - Single line border
  • double - Double line border
  • thick_thin - Thick line on the top, thin on the bottom
  • thin_thick - Thin line on the top, thick on the bottom
  • triple - Three parallel lines border

Note: Border styles are not supported in PowerPoint for the web.

band1_column_inside_horizontal_border_width length 1pt

Sets the width of the horizontal interior borders for the odd columns (counting from 1).

band1_column_inside_horizontal_border_color color

Defines the color of the horizontal interior borders for the odd columns (counting from 1).

band1_column_inside_horizontal_border_style string

Specifies the style of the horizontal interior borders for the odd columns (counting from 1). Valid values:

  • single - Single line border
  • double - Double line border
  • thick_thin - Thick line on the top, thin on the bottom
  • thin_thick - Thin line on the top, thick on the bottom
  • triple - Three parallel lines border

Note: Border styles are not supported in PowerPoint for the web.

band1_column_font_weight string

Specifies the font weight for text in the odd columns (counting from 1). Valid values:

  • normal - Regular weight
  • bold - Bold weight
band1_column_font_color color

Defines the text color for content in the odd columns (counting from 1).

band1_column_cell_left_margin length 1/4 of the font size

Sets the left margin for cell content in the odd columns (counting from 1).

band1_column_cell_right_margin length 1/4 of the font size

Sets the right margin for cell content in the odd columns (counting from 1).

band1_column_cell_top_margin length 1/4 of the font size

Sets the top margin for cell content in the odd columns (counting from 1).

band1_column_cell_bottom_margin length 1/4 of the font size

Sets the bottom margin for cell content in the odd columns (counting from 1).

band1_column_cell_horizontal_align string left

Controls the horizontal alignment of content in the odd columns (counting from 1). Valid values:

  • left - Aligns text to the left
  • center - Centers text horizontally
  • right - Aligns text to the right
  • justified - Justifies text with last line left-aligned
  • distributed - Distributes text evenly including the last line

Note: justified does not adjust spacing of the last line, while distributed adjusts spacing of all lines including the last one.

band1_column_cell_vertical_align string top

Controls the vertical alignment of content in the odd columns (counting from 1). Valid values:

  • top - Aligns content to the top of the cell
  • center - Centers content vertically
  • bottom - Aligns content to the bottom of the cell
band2_row_background_color color

Sets the background color for cells in the even rows (counting from 1).

band2_row_left_border_width length 1pt

Sets the width of the left borders for the even rows (counting from 1).

band2_row_left_border_color color

Defines the color of the left borders for the even rows (counting from 1).

band2_row_left_border_style string

Specifies the style of the left borders for the even rows (counting from 1). Valid values:

  • single - Single line border
  • double - Double line border
  • thick_thin - Thick line on the right, thin on the left
  • thin_thick - Thin line on the right, thick on the left
  • triple - Three parallel lines border

Note: Border styles are not supported in PowerPoint for the web.

band2_row_right_border_width length 1pt

Sets the width of the right borders for the even rows (counting from 1).

band2_row_right_border_color color

Defines the color of the right borders for the even rows (counting from 1).

band2_row_right_border_style string

Specifies the style of the right borders for the even rows (counting from 1). Valid values:

  • single - Single line border
  • double - Double line border
  • thick_thin - Thick line on the right, thin on the left
  • thin_thick - Thin line on the right, thick on the left
  • triple - Three parallel lines border

Note: Border styles are not supported in PowerPoint for the web.

band2_row_top_border_width length 1pt

Sets the width of the top borders for the even rows (counting from 1).

band2_row_top_border_color color

Defines the color of the top borders for the even rows (counting from 1).

band2_row_top_border_style string

Specifies the style of the top borders for the even rows (counting from 1). Valid values:

  • single - Single line border
  • double - Double line border
  • thick_thin - Thick line on the top, thin on the bottom
  • thin_thick - Thin line on the top, thick on the bottom
  • triple - Three parallel lines border

Note: Border styles are not supported in PowerPoint for the web.

band2_row_bottom_border_width length 1pt

Sets the width of the bottom borders for the even rows (counting from 1).

band2_row_bottom_border_color color

Defines the color of the bottom borders for the even rows (counting from 1).

band2_row_bottom_border_style string

Specifies the style of the bottom borders for the even rows (counting from 1). Valid values:

  • single - Single line border
  • double - Double line border
  • thick_thin - Thick line on the top, thin on the bottom
  • thin_thick - Thin line on the top, thick on the bottom
  • triple - Three parallel lines border

Note: Border styles are not supported in PowerPoint for the web.

band2_row_inside_vertical_border_width length 1pt

Sets the width of the vertical interior borders for the even rows (counting from 1).

band2_row_inside_vertical_border_color color

Defines the color of the vertical interior borders for the even rows (counting from 1).

band2_row_inside_vertical_border_style string

Specifies the style of the vertical interior borders for the even rows (counting from 1). Valid values:

  • single - Single line border
  • double - Double line border
  • thick_thin - Thick line on the right, thin on the left
  • thin_thick - Thin line on the right, thick on the left
  • triple - Three parallel lines border

Note: Border styles are not supported in PowerPoint for the web.

band2_row_font_weight string

Specifies the font weight for text in the even rows (counting from 1). Valid values:

  • normal - Regular weight
  • bold - Bold weight
band2_row_font_color color

Defines the text color for content in the even rows (counting from 1).

band2_row_cell_left_margin length 1/4 of the font size

Sets the left margin for cell content in the even rows (counting from 1).

band2_row_cell_right_margin length 1/4 of the font size

Sets the right margin for cell content in the even rows (counting from 1).

band2_row_cell_top_margin length 1/4 of the font size

Sets the top margin for cell content in the even rows (counting from 1).

band2_row_cell_bottom_margin length 1/4 of the font size

Sets the bottom margin for cell content in the even rows (counting from 1).

band2_row_cell_horizontal_align string left

Controls the horizontal alignment of content in the even rows (counting from 1). Valid values:

  • left - Aligns text to the left
  • center - Centers text horizontally
  • right - Aligns text to the right
  • justified - Justifies text with last line left-aligned
  • distributed - Distributes text evenly including the last line

Note: justified does not adjust spacing of the last line, while distributed adjusts spacing of all lines including the last one.

band2_row_cell_vertical_align string top

Controls the vertical alignment of content in the even rows (counting from 1). Valid values:

  • top - Aligns content to the top of the cell
  • center - Centers content vertically
  • bottom - Aligns content to the bottom of the cell
band2_column_background_color color

Sets the background color for cells in the even columns (counting from 1).

band2_column_left_border_width length 1pt

Sets the width of the left borders for the even columns (counting from 1).

band2_column_left_border_color color

Defines the color of the left borders for the even columns (counting from 1).

band2_column_left_border_style string

Specifies the style of the left borders for the even columns (counting from 1). Valid values:

  • single - Single line border
  • double - Double line border
  • thick_thin - Thick line on the right, thin on the left
  • thin_thick - Thin line on the right, thick on the left
  • triple - Three parallel lines border

Note: Border styles are not supported in PowerPoint for the web.

band2_column_right_border_width length 1pt

Sets the width of the right borders for the even columns (counting from 1).

band2_column_right_border_color color

Defines the color of the right borders for the even columns (counting from 1).

band2_column_right_border_style string

Specifies the style of the right borders for the even columns (counting from 1). Valid values:

  • single - Single line border
  • double - Double line border
  • thick_thin - Thick line on the right, thin on the left
  • thin_thick - Thin line on the right, thick on the left
  • triple - Three parallel lines border

Note: Border styles are not supported in PowerPoint for the web.

band2_column_top_border_width length 1pt

Sets the width of the top borders for the even columns (counting from 1).

band2_column_top_border_color color

Defines the color of the top borders for the even columns (counting from 1).

band2_column_top_border_style string

Specifies the style of the top borders for the even columns (counting from 1). Valid values:

  • single - Single line border
  • double - Double line border
  • thick_thin - Thick line on the top, thin on the bottom
  • thin_thick - Thin line on the top, thick on the bottom
  • triple - Three parallel lines border

Note: Border styles are not supported in PowerPoint for the web.

band2_column_bottom_border_width length 1pt

Sets the width of the bottom borders for the even columns (counting from 1).

band2_column_bottom_border_color color

Defines the color of the bottom borders for the even columns (counting from 1).

band2_column_bottom_border_style string

Specifies the style of the bottom borders for the even columns (counting from 1). Valid values:

  • single - Single line border
  • double - Double line border
  • thick_thin - Thick line on the top, thin on the bottom
  • thin_thick - Thin line on the top, thick on the bottom
  • triple - Three parallel lines border

Note: Border styles are not supported in PowerPoint for the web.

band2_column_inside_horizontal_border_width length 1pt

Sets the width of the horizontal interior borders for the even columns (counting from 1).

band2_column_inside_horizontal_border_color color

Defines the color of the horizontal interior borders for the even columns (counting from 1).

band2_column_inside_horizontal_border_style string

Specifies the style of the horizontal interior borders for the even columns (counting from 1). Valid values:

  • single - Single line border
  • double - Double line border
  • thick_thin - Thick line on the top, thin on the bottom
  • thin_thick - Thin line on the top, thick on the bottom
  • triple - Three parallel lines border

Note: Border styles are not supported in PowerPoint for the web.

band2_column_font_weight string

Specifies the font weight for text in the even columns (counting from 1). Valid values:

  • normal - Regular weight
  • bold - Bold weight
band2_column_font_color color

Defines the text color for content in the even columns (counting from 1).

band2_column_cell_left_margin length 1/4 of the font size

Sets the left margin for cell content in the even columns (counting from 1).

band2_column_cell_right_margin length 1/4 of the font size

Sets the right margin for cell content in the even columns (counting from 1).

band2_column_cell_top_margin length 1/4 of the font size

Sets the top margin for cell content in the even columns (counting from 1).

band2_column_cell_bottom_margin length 1/4 of the font size

Sets the bottom margin for cell content in the even columns (counting from 1).

band2_column_cell_horizontal_align string left

Controls the horizontal alignment of content in the even columns (counting from 1). Valid values:

  • left - Aligns text to the left
  • center - Centers text horizontally
  • right - Aligns text to the right
  • justified - Justifies text with last line left-aligned
  • distributed - Distributes text evenly including the last line

Note: justified does not adjust spacing of the last line, while distributed adjusts spacing of all lines including the last one.

band2_column_cell_vertical_align string top

Controls the vertical alignment of content in the even columns (counting from 1). Valid values:

  • top - Aligns content to the top of the cell
  • center - Centers content vertically
  • bottom - Aligns content to the bottom of the cell
southeast_cell_background_color color

Sets the background color for cells in the southeast cell.

southeast_cell_left_border_width length 1pt

Sets the width of the left border for the southeast cell.

southeast_cell_left_border_color color

Defines the color of the left border for the southeast cell.

southeast_cell_left_border_style string

Specifies the style of the left border for the southeast cell. Valid values:

  • single - Single line border
  • double - Double line border
  • thick_thin - Thick line on the right, thin on the left
  • thin_thick - Thin line on the right, thick on the left
  • triple - Three parallel lines border

Note: Border styles are not supported in PowerPoint for the web.

southeast_cell_right_border_width length 1pt

Sets the width of the right border for the southeast cell.

southeast_cell_right_border_color color

Defines the color of the right border for the southeast cell.

southeast_cell_right_border_style string

Specifies the style of the right border for the southeast cell. Valid values:

  • single - Single line border
  • double - Double line border
  • thick_thin - Thick line on the right, thin on the left
  • thin_thick - Thin line on the right, thick on the left
  • triple - Three parallel lines border

Note: Border styles are not supported in PowerPoint for the web.

southeast_cell_top_border_width length 1pt

Sets the width of the top border for the southeast cell.

southeast_cell_top_border_color color

Defines the color of the top border for the southeast cell.

southeast_cell_top_border_style string

Specifies the style of the top border for the southeast cell. Valid values:

  • single - Single line border
  • double - Double line border
  • thick_thin - Thick line on the top, thin on the bottom
  • thin_thick - Thin line on the top, thick on the bottom
  • triple - Three parallel lines border

Note: Border styles are not supported in PowerPoint for the web.

southeast_cell_bottom_border_width length 1pt

Sets the width of the bottom border for the southeast cell.

southeast_cell_bottom_border_color color

Defines the color of the bottom border for the southeast cell.

southeast_cell_bottom_border_style string

Specifies the style of the bottom border for the southeast cell. Valid values:

  • single - Single line border
  • double - Double line border
  • thick_thin - Thick line on the top, thin on the bottom
  • thin_thick - Thin line on the top, thick on the bottom
  • triple - Three parallel lines border

Note: Border styles are not supported in PowerPoint for the web.

southeast_cell_font_weight string

Specifies the font weight for text in the southeast cell. Valid values:

  • normal - Regular weight
  • bold - Bold weight
southeast_cell_font_color color

Defines the text color for content in the southeast cell.

southeast_cell_left_margin length 1/4 of the font size

Sets the left margin for cell content in the southeast cell.

southeast_cell_right_margin length 1/4 of the font size

Sets the right margin for cell content in the southeast cell.

southeast_cell_top_margin length 1/4 of the font size

Sets the top margin for cell content in the southeast cell.

southeast_cell_bottom_margin length 1/4 of the font size

Sets the bottom margin for cell content in the southeast cell.

southeast_cell_horizontal_align string left

Controls the horizontal alignment of content in the southeast cell. Valid values:

  • left - Aligns text to the left
  • center - Centers text horizontally
  • right - Aligns text to the right
  • justified - Justifies text with last line left-aligned
  • distributed - Distributes text evenly including the last line

Note: justified does not adjust spacing of the last line, while distributed adjusts spacing of all lines including the last one.

southeast_cell_vertical_align string top

Controls the vertical alignment of content in the southeast cell. Valid values:

  • top - Aligns content to the top of the cell
  • center - Centers content vertically
  • bottom - Aligns content to the bottom of the cell
southwest_cell_background_color color

Sets the background color for cells in the southwest cell.

southwest_cell_left_border_width length 1pt

Sets the width of the left border for the southwest cell.

southwest_cell_left_border_color color

Defines the color of the left border for the southwest cell.

southwest_cell_left_border_style string

Specifies the style of the left border for the southwest cell. Valid values:

  • single - Single line border
  • double - Double line border
  • thick_thin - Thick line on the right, thin on the left
  • thin_thick - Thin line on the right, thick on the left
  • triple - Three parallel lines border

Note: Border styles are not supported in PowerPoint for the web.

southwest_cell_right_border_width length 1pt

Sets the width of the right border for the southwest cell.

southwest_cell_right_border_color color

Defines the color of the right border for the southwest cell.

southwest_cell_right_border_style string

Specifies the style of the right border for the southwest cell. Valid values:

  • single - Single line border
  • double - Double line border
  • thick_thin - Thick line on the right, thin on the left
  • thin_thick - Thin line on the right, thick on the left
  • triple - Three parallel lines border

Note: Border styles are not supported in PowerPoint for the web.

southwest_cell_top_border_width length 1pt

Sets the width of the top border for the southwest cell.

southwest_cell_top_border_color color

Defines the color of the top border for the southwest cell.

southwest_cell_top_border_style string

Specifies the style of the top border for the southwest cell. Valid values:

  • single - Single line border
  • double - Double line border
  • thick_thin - Thick line on the top, thin on the bottom
  • thin_thick - Thin line on the top, thick on the bottom
  • triple - Three parallel lines border

Note: Border styles are not supported in PowerPoint for the web.

southwest_cell_bottom_border_width length 1pt

Sets the width of the bottom border for the southwest cell.

southwest_cell_bottom_border_color color

Defines the color of the bottom border for the southwest cell.

southwest_cell_bottom_border_style string

Specifies the style of the bottom border for the southwest cell. Valid values:

  • single - Single line border
  • double - Double line border
  • thick_thin - Thick line on the top, thin on the bottom
  • thin_thick - Thin line on the top, thick on the bottom
  • triple - Three parallel lines border

Note: Border styles are not supported in PowerPoint for the web.

southwest_cell_font_weight string

Specifies the font weight for text in the southwest cell. Valid values:

  • normal - Regular weight
  • bold - Bold weight
southwest_cell_font_color color

Defines the text color for content in the southwest cell.

southwest_cell_left_margin length 1/4 of the font size

Sets the left margin for cell content in the southwest cell.

southwest_cell_right_margin length 1/4 of the font size

Sets the right margin for cell content in the southwest cell.

southwest_cell_top_margin length 1/4 of the font size

Sets the top margin for cell content in the southwest cell.

southwest_cell_bottom_margin length 1/4 of the font size

Sets the bottom margin for cell content in the southwest cell.

southwest_cell_horizontal_align string left

Controls the horizontal alignment of content in the southwest cell. Valid values:

  • left - Aligns text to the left
  • center - Centers text horizontally
  • right - Aligns text to the right
  • justified - Justifies text with last line left-aligned
  • distributed - Distributes text evenly including the last line

Note: justified does not adjust spacing of the last line, while distributed adjusts spacing of all lines including the last one.

southwest_cell_vertical_align string top

Controls the vertical alignment of content in the southwest cell. Valid values:

  • top - Aligns content to the top of the cell
  • center - Centers content vertically
  • bottom - Aligns content to the bottom of the cell
northeast_cell_background_color color

Sets the background color for cells in the northeast cell.

northeast_cell_left_border_width length 1pt

Sets the width of the left border for the northeast cell.

northeast_cell_left_border_color color

Defines the color of the left border for the northeast cell.

northeast_cell_left_border_style string

Specifies the style of the left border for the northeast cell. Valid values:

  • single - Single line border
  • double - Double line border
  • thick_thin - Thick line on the right, thin on the left
  • thin_thick - Thin line on the right, thick on the left
  • triple - Three parallel lines border

Note: Border styles are not supported in PowerPoint for the web.

northeast_cell_right_border_width length 1pt

Sets the width of the right border for the northeast cell.

northeast_cell_right_border_color color

Defines the color of the right border for the northeast cell.

northeast_cell_right_border_style string

Specifies the style of the right border for the northeast cell. Valid values:

  • single - Single line border
  • double - Double line border
  • thick_thin - Thick line on the right, thin on the left
  • thin_thick - Thin line on the right, thick on the left
  • triple - Three parallel lines border

Note: Border styles are not supported in PowerPoint for the web.

northeast_cell_top_border_width length 1pt

Sets the width of the top border for the northeast cell.

northeast_cell_top_border_color color

Defines the color of the top border for the northeast cell.

northeast_cell_top_border_style string

Specifies the style of the top border for the northeast cell. Valid values:

  • single - Single line border
  • double - Double line border
  • thick_thin - Thick line on the top, thin on the bottom
  • thin_thick - Thin line on the top, thick on the bottom
  • triple - Three parallel lines border

Note: Border styles are not supported in PowerPoint for the web.

northeast_cell_bottom_border_width length 1pt

Sets the width of the bottom border for the northeast cell.

northeast_cell_bottom_border_color color

Defines the color of the bottom border for the northeast cell.

northeast_cell_bottom_border_style string

Specifies the style of the bottom border for the northeast cell. Valid values:

  • single - Single line border
  • double - Double line border
  • thick_thin - Thick line on the top, thin on the bottom
  • thin_thick - Thin line on the top, thick on the bottom
  • triple - Three parallel lines border

Note: Border styles are not supported in PowerPoint for the web.

northeast_cell_font_weight string

Specifies the font weight for text in the northeast cell. Valid values:

  • normal - Regular weight
  • bold - Bold weight
northeast_cell_font_color color

Defines the text color for content in the northeast cell.

northeast_cell_left_margin length 1/4 of the font size

Sets the left margin for cell content in the northeast cell.

northeast_cell_right_margin length 1/4 of the font size

Sets the right margin for cell content in the northeast cell.

northeast_cell_top_margin length 1/4 of the font size

Sets the top margin for cell content in the northeast cell.

northeast_cell_bottom_margin length 1/4 of the font size

Sets the bottom margin for cell content in the northeast cell.

northeast_cell_horizontal_align string left

Controls the horizontal alignment of content in the northeast cell. Valid values:

  • left - Aligns text to the left
  • center - Centers text horizontally
  • right - Aligns text to the right
  • justified - Justifies text with last line left-aligned
  • distributed - Distributes text evenly including the last line

Note: justified does not adjust spacing of the last line, while distributed adjusts spacing of all lines including the last one.

northeast_cell_vertical_align string top

Controls the vertical alignment of content in the northeast cell. Valid values:

  • top - Aligns content to the top of the cell
  • center - Centers content vertically
  • bottom - Aligns content to the bottom of the cell
northwest_cell_background_color color

Sets the background color for cells in the northwest cell.

northwest_cell_left_border_width length 1pt

Sets the width of the left border for the northwest cell.

northwest_cell_left_border_color color

Defines the color of the left border for the northwest cell.

northwest_cell_left_border_style string

Specifies the style of the left border for the northwest cell. Valid values:

  • single - Single line border
  • double - Double line border
  • thick_thin - Thick line on the right, thin on the left
  • thin_thick - Thin line on the right, thick on the left
  • triple - Three parallel lines border

Note: Border styles are not supported in PowerPoint for the web.

northwest_cell_right_border_width length 1pt

Sets the width of the right border for the northwest cell.

northwest_cell_right_border_color color

Defines the color of the right border for the northwest cell.

northwest_cell_right_border_style string

Specifies the style of the right border for the northwest cell. Valid values:

  • single - Single line border
  • double - Double line border
  • thick_thin - Thick line on the right, thin on the left
  • thin_thick - Thin line on the right, thick on the left
  • triple - Three parallel lines border

Note: Border styles are not supported in PowerPoint for the web.

northwest_cell_top_border_width length 1pt

Sets the width of the top border for the northwest cell.

northwest_cell_top_border_color color

Defines the color of the top border for the northwest cell.

northwest_cell_top_border_style string

Specifies the style of the top border for the northwest cell. Valid values:

  • single - Single line border
  • double - Double line border
  • thick_thin - Thick line on the top, thin on the bottom
  • thin_thick - Thin line on the top, thick on the bottom
  • triple - Three parallel lines border

Note: Border styles are not supported in PowerPoint for the web.

northwest_cell_bottom_border_width length 1pt

Sets the width of the bottom border for the northwest cell.

northwest_cell_bottom_border_color color

Defines the color of the bottom border for the northwest cell.

northwest_cell_bottom_border_style string

Specifies the style of the bottom border for the northwest cell. Valid values:

  • single - Single line border
  • double - Double line border
  • thick_thin - Thick line on the top, thin on the bottom
  • thin_thick - Thin line on the top, thick on the bottom
  • triple - Three parallel lines border

Note: Border styles are not supported in PowerPoint for the web.

northwest_cell_font_weight string

Specifies the font weight for text in the northwest cell. Valid values:

  • normal - Regular weight
  • bold - Bold weight
northwest_cell_font_color color

Defines the text color for content in the northwest cell.

northwest_cell_left_margin length 1/4 of the font size

Sets the left margin for cell content in the northwest cell.

northwest_cell_right_margin length 1/4 of the font size

Sets the right margin for cell content in the northwest cell.

northwest_cell_top_margin length 1/4 of the font size

Sets the top margin for cell content in the northwest cell.

northwest_cell_bottom_margin length 1/4 of the font size

Sets the bottom margin for cell content in the northwest cell.

northwest_cell_horizontal_align string left

Controls the horizontal alignment of content in the northwest cell. Valid values:

  • left - Aligns text to the left
  • center - Centers text horizontally
  • right - Aligns text to the right
  • justified - Justifies text with last line left-aligned
  • distributed - Distributes text evenly including the last line

Note: justified does not adjust spacing of the last line, while distributed adjusts spacing of all lines including the last one.

northwest_cell_vertical_align string top

Controls the vertical alignment of content in the northwest cell. Valid values:

  • top - Aligns content to the top of the cell
  • center - Centers content vertically
  • bottom - Aligns content to the bottom of the cell