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:
boolean
: Eithertrue
orfalse
.string
: Any valid YAML string.string+
: A YAML sequence of strings or a comma-separated string list.integer
: One or more digits ([0-9]
) preceded by an optional sign.number
: Either aninteger
or a decimal number (optional sign, zero or more digits, decimal point, and one or more digits).length
: Either a unitless0
or anumber
followed by a unit. Valid units include:mm
: millimeterscm
: centimetersin
: inches (25.4 mm)pt
: points (1/72 in)px
: pixels (1/96 in)
date
: A date in the formatyyyy-MM-dd
(four-digit year, two-digit month, two-digit day).time
: A time in the formatHH:mm[:ss[.SSS]]
(two-digit hour, two-digit minute, optional seconds and fractional seconds).date-time
: A combined date and time in the formatyyyy-MM-dd[THH[:mm[:ss[.SSS]]]]
, whereT
,t
, or a space connects the date and time portions.color
: A color specified in either#RGB
or#RRGGBB
format (whereR
,G
, andB
are hexadecimal digits representing the red, green, and blue components in the sRGB color space), or one of the following theme colors:dark1
dark2
light1
light2
accent1
accent2
accent3
accent4
accent5
accent6
hyperlink
followedHyperlink
Note: In YAML syntax, the
#
character starts a comment, so hexadecimal color values must be enclosed in double quotes.color+
: A YAML sequence ofcolor
values, or a comma-separated string ofcolor
values.mapping
: A YAML mapping (dictionary) of string keys to string values.length-weights
: A colon-separated list ofnumber
orlength
values.axis-unit
: Anumber
with an optional time unit. The number and unit may be separated by spaces or tabs. Valid units includedays
,hours
,minutes
,mins
,seconds
,secs
, or their singular forms.vertical-alignment
: One of the following alignment 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)
horizontal-alignment
: One of the following alignment 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, whiledistributed
alignment adjusts the spacing of all lines including the last one.parameter+
: A YAML sequence of parameter objects. Each object must have aname
key and may optionally includedescription
anddefault
keys, all with string values. Thename
defines the variable name, and ifdefault
is provided, it sets the initial value when not explicitly defined elsewhere. Parameter values take effect from the next block. When usinginclude
, parameters in the included file are processed after variables in the current block are expanded, so they don't affect variables in the current block. Thedescription
field is purely for documentation purposes.auto
: The literal keywordauto
, indicating automatic determination of a value.
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 |
|
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 |
db_config |
mapping |
{} |
Defines DuckDB configuration options as key-value pairs. For an open database, these are applied using |
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 |
rows |
length-weights |
Defines the height of each row in the slide using a colon-separated list of Example:
In this example, rows |
|
columns |
length-weights |
1 |
Defines the width distribution and count of columns within a row using a colon-separated list of Width calculations follow the same principles as row height calculations, with |
row_gap |
length |
0 |
Specifies the vertical spacing between adjacent rows in the slide layout. A value of |
column_gap |
length |
0 |
Defines the horizontal spacing between adjacent columns in the slide layout. A value of |
body_horizontal_align |
horizontal-alignment |
left |
Controls the horizontal text alignment within content blocks. Supports the following values:
Note: |
body_vertical_align |
vertical-alignment |
top |
Controls the vertical positioning of content within blocks. Accepts the following values:
|
body_font_scale |
number |
1 |
Applies a scaling factor to the base body text font size. For example, a value of |
title_font_scale |
number |
1 |
Applies a scaling factor to the base title font size. For example, a value of |
language |
string |
Specifies the language for text content using RFC 4646/BCP 47 language codes (for example, |
|
query_file |
string |
Specifies a file containing DuckDB SQL queries to execute. When both |
|
query |
string |
Contains inline DuckDB SQL queries to execute. When both |
|
parameters |
parameter+ |
[] |
Defines variables that can be referenced throughout the document. This option takes a YAML sequence of parameter objects, each containing a required |
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:
When |
series_colors |
color+ |
Theme accent colors |
Defines the color palette used for data series in the chart. Colors can be specified using either:
Colors can be specified either as a YAML sequence of values or as a comma-separated string list. Note: In YAML syntax, the |
group_by_series |
boolean |
false |
Controls the organization of data in the chart. When set to Note: This feature is not yet implemented. |
bar_grouping |
string |
clustered |
Determines the arrangement of bars within a bar chart. Accepts the following values:
This option only applies to bar charts. |
bar_direction |
string |
vertical |
Controls the orientation of bars in bar charts. Accepts the following values:
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:
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 |
|
fill_opacity |
number |
1 |
Controls the transparency level of filled regions in the chart. Values range from |
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 For date and time values, use the following formats:
|
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 For date and time values, use the following formats:
|
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 |
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 |
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 ( |
|
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 ( |
|
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 |
x_axis_grid_major_width |
length |
0 |
Defines the thickness of major gridlines associated with the X-axis. Setting this value to |
x_axis_grid_minor_width |
length |
0 |
Controls the thickness of minor gridlines associated with the X-axis. Setting this value to |
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 For date and time values, use the following formats:
|
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 For date and time values, use the following formats:
|
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 |
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 |
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 ( |
|
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 ( |
|
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 |
y_axis_grid_major_width |
length |
0 |
Defines the thickness of major gridlines associated with the Y-axis. Setting this value to |
y_axis_grid_minor_width |
length |
0 |
Controls the thickness of minor gridlines associated with the Y-axis. Setting this value to |
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:
|
legend_line_width |
length |
0 |
Controls the thickness of the border surrounding the legend box. Setting this value to |
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:
For scatter, bubble, or line charts, the following positions are supported:
Note: Area charts do not support data label positioning. Although |
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:
|
data_label_format |
string |
auto |
Controls the display format of data labels using Excel format codes. When set to |
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 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 |
marker_fill_opacity |
number |
1 for scatter plots, fill_opacity for bubble charts |
Controls the transparency level of marker fill colors. Values range from |
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:
table
: Applies to the entire tablefirst_row
: Applies to the header row (topmost row)first_column
: Applies to the leftmost columnlast_row
: Applies to the bottom rowlast_column
: Applies to the rightmost columnband1_row
: Applies to odd-numbered rows (counting from 1)band2_row
: Applies to even-numbered rows (counting from 1)band1_column
: Applies to odd-numbered columns (counting from 1)band2_column
: Applies to even-numbered columns (counting from 1)northwest_cell
: Applies to the top-left cellnortheast_cell
: Applies to the top-right cellsouthwest_cell
: Applies to the bottom-left cellsoutheast_cell
: Applies to the bottom-right cell
Each table region can be styled using the following option patterns, where *
is replaced by the region name:
*_background_color
: Sets the background color of cells in the region*_font_weight
: Controls text boldness in the region*_font_color
: Sets the text color in the region*_cell_left_margin
: Sets the left padding inside cells of the region*_cell_right_margin
: Sets the right padding inside cells of the region*_cell_top_margin
: Sets the top padding inside cells of the region*_cell_bottom_margin
: Sets the bottom padding inside cells of the region*_cell_horizontal_align
: Controls horizontal text alignment in the region*_cell_vertical_align
: Controls vertical text alignment in the region-
Border options follow the pattern
*_{border_position}_border_{border_property}
, where{border_position}
can be:left
: Left edge bordersright
: Right edge borderstop
: Top edge bordersbottom
: Bottom edge bordersinside_horizontal
: Internal horizontal borders (between rows)inside_vertical
: Internal vertical borders (between columns)
And
{border_property}
can be:width
: Border thicknesscolor
: Border colorstyle
: Border line style (single, double, etc.)
Name | Type | Default | Description |
---|---|---|---|
table_rows |
length-weights |
Controls the height distribution of rows within a table using a colon-separated list of Example: With |
|
table_columns |
length-weights |
Controls the width distribution of columns within a table using a colon-separated list of 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:
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:
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:
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:
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:
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:
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:
|
|
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:
Note: |
table_cell_vertical_align |
string |
top |
Controls the vertical alignment of content in the table. Valid values:
|
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:
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:
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:
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:
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:
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:
|
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:
Note: |
first_row_cell_vertical_align |
string |
top |
Controls the vertical alignment of content in the first row (header). Valid values:
|
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:
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:
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:
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:
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:
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:
|
|
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:
Note: |
first_column_cell_vertical_align |
string |
top |
Controls the vertical alignment of content in the first column. Valid values:
|
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:
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:
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:
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:
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:
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:
|
|
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:
Note: |
last_row_cell_vertical_align |
string |
top |
Controls the vertical alignment of content in the last row. Valid values:
|
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:
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:
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:
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:
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:
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:
|
|
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:
Note: |
last_column_cell_vertical_align |
string |
top |
Controls the vertical alignment of content in the last column. Valid values:
|
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:
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:
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:
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:
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:
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:
|
|
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:
Note: |
band1_row_cell_vertical_align |
string |
top |
Controls the vertical alignment of content in the odd rows (counting from 1). Valid values:
|
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:
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:
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:
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:
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:
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:
|
|
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:
Note: |
band1_column_cell_vertical_align |
string |
top |
Controls the vertical alignment of content in the odd columns (counting from 1). Valid values:
|
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:
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:
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:
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:
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:
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:
|
|
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:
Note: |
band2_row_cell_vertical_align |
string |
top |
Controls the vertical alignment of content in the even rows (counting from 1). Valid values:
|
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:
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:
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:
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:
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:
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:
|
|
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:
Note: |
band2_column_cell_vertical_align |
string |
top |
Controls the vertical alignment of content in the even columns (counting from 1). Valid values:
|
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:
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:
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:
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:
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:
|
|
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:
Note: |
southeast_cell_vertical_align |
string |
top |
Controls the vertical alignment of content in the southeast cell. Valid values:
|
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:
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:
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:
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:
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:
|
|
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:
Note: |
southwest_cell_vertical_align |
string |
top |
Controls the vertical alignment of content in the southwest cell. Valid values:
|
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:
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:
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:
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:
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:
|
|
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:
Note: |
northeast_cell_vertical_align |
string |
top |
Controls the vertical alignment of content in the northeast cell. Valid values:
|
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:
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:
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:
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:
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:
|
|
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:
Note: |
northwest_cell_vertical_align |
string |
top |
Controls the vertical alignment of content in the northwest cell. Valid values:
|