brewtheme
Command used to generate .theme files used by brewscheme
brewtheme – a program to generate theme files containing scheme file entries for graph independent aesthetics.
Syntax
brewtheme themeName [, abovebelow(string) anglestyle(string) areastyle(string) arrowstyle(string) axisstyle(string) barlabelpos(string) barlabelstyle(string) barstyle(string) bygraphstyle(string) clegendstyle(string) clockdir(string) color(string) compass2dir(string) compass3dir(string) connectstyle(string) dottypestyle(string) graphsize(string) graphstyle(string) gridlinestyle(string) gridringstyle(string) gridstyle(string) gsize(string) horizontal(string) labelstyle(string) legendstyle(string) linepattern(string) linestyle(string) linewidth(string) margin(string) medtypestyle(string) numstyle(string) numticks(string) piegraphstyle(string) pielabelstyle(string) plotregionstyle(string) relativepos(string) relsize(string) special(string) starstyle(string) sunflowerstyle(string) symbol(string) symbolsize(string) orientstyle(string) textboxstyle(string) tickposition(string) tickstyle(string) ticksetstyle(string) verticaltext(string) yesno(string) zyx2rule(string) zyx2style(string) ]
Description
brewtheme is used to create a file with scheme entries that are primarily used to control/define graph independent/global aesthetic properties for Stata graphs (with a few exceptions related to bar graphs and/or pie graphs). Given the number of potential arguments for some of these options, they are each described below briefly and in greater detail in their respective helpfiles.
Additionally, when developing new schemes/themes, it is important to follow the guidance provided in the scheme files help documentation. Notably:
It is critical that you issue the discard command each time before you reissue your graph command. discard reinitializes the graphics system, and that includes clearing the graphics scheme. If you do not type discard, graph will note that you are using the same scheme each time and will use the already loaded scheme - ignoring the changes you made in the scheme file.
For additional information about the different options and entries that are used in scheme files, see scheme entries. If you try a value that does not work when creating a .theme file, submit an issue to the project’s repository or you can modify the corresponding help file for that option noting that the value didn’t work and submit a pull request to merge your changes with the project’s repository. The entries on the topic specific help files below are my best guesses regarding the set of possible values.
Lastly, if you want to see any working examples, there are examples available at the bottom of this page.
Options
The links below point to topic specific help files. These are still a work in progress, but will contain information about specific entries and as much information as possible about how their values effect the appearance of graphs.
The options below are listed with the ‘bt’ prefix to differentiate them from cases where there may be official Stata help files with the same namespace.
Examples
Ex 1.
Create a theme file that emulates the aesthetics of the ggplot2 package for the R language.
// Change the end of line delimiter
#d ;
// Generate the theme file used to simulate ggplot2 aesthetics
brewtheme ggtheme, numticks("major 5" "horizontal_major 5" "vertical_major 5"
"horizontal_minor 10" "vertical_minor 10") color("plotregion gs15"
"matrix_plotregion gs15" "background gs15" "textbox gs15" "legend gs15"
"box gs15" "mat_label_box gs15" "text_option_fill gs15" "clegend gs15"
"histback gs15" "pboxlabelfill gs15" "plabelfill gs15" "pmarkbkfill gs15"
"pmarkback gs15") linew("major_grid medthick" "minor_grid thin" "legend medium"
"clegend medium") clockdir("legend_position 3") yesno("draw_major_grid yes"
"draw_minor_grid yes" "legend_force_draw yes" "legend_force_nodraw no"
"draw_minor_vgrid yes" "draw_minor_hgrid yes" "extend_grid_low yes"
"extend_grid_high yes" "extend_axes_low no" "extend_axes_high no")
gridsty("minor minor") axissty("horizontal_default horizontal_withgrid"
"vertical_default vertical_withgrid") linepattern("major_grid solid"
"minor_grid solid") linesty("major_grid major_grid" "minor_grid minor_grid")
ticksty("minor minor_notick" "minor_notick minor_notick")
ticksetsty("major_vert_withgrid minor_vert_nolabel"
"major_horiz_withgrid minor_horiz_nolabel"
"major_horiz_nolabel major_horiz_default"
"major_vert_nolabel major_vert_default") gsize("minortick_label minuscule"
"minortick tiny") numsty("legend_cols 1" "legend_rows 0" "zyx2rows 0"
"zyx2cols 1") verticaltext("legend top");
// Change the end of line delimiter back to a carriage return
#d cr
// Create a scheme file using the theme file created with the syntax above
brewscheme, scheme(ggtest2) const(orange) cone(blue) consat(20) scatc(5) ///
scatst(ggplot2) piest(ggplot2) piec(6) barst(ggplot2) barc(2) linec(2) ///
linest(ggplot2) areast(ggplot2) areac(5) somest(ggplot2) somec(24) cic(3) ///
cist(ggplot2) themef(ggplot2)
// Load the auto.dta data set
sysuse auto.dta, clear
// Create a graph with the scheme file above
tw lowess mpg weight || ///
scatter mpg weight if rep78 == 1 || ///
scatter mpg weight if rep78 == 2 || ///
scatter mpg weight if rep78 == 3 || ///
scatter mpg weight if rep78 == 4 || ///
scatter mpg weight if rep78 == 5, ///
legend(order(2 "1978 Repair Record = 1" ///
3 "1978 Repair Record = 2" 4 "1978 Repair Record = 3" ///
5 "1978 Repair Record = 4" 6 "1978 Repair Record = 5")) ///
scheme(ggtest2)
Ex 2.
Uses the theme above and shows how symbol types get recycled as well
brewscheme, scheme(ggtest2) const(orange) cone(blue) consat(20) ///
scatst(ggplot2) scatc(5) piest(ggplot2) piec(6) barst(ggplot2) barc(2) ///
linest(ggplot2) linec(2) areast(ggplot2) areac(5) somest(ggplot2) somec(24) ///
cist(ggplot2) cic(3) themef(ggplot2) symbols(diamond triangle square)
// Create a graph with the scheme file above
tw lowess mpg weight || ///
scatter mpg weight if rep78 == 1 || ///
scatter mpg weight if rep78 == 2 || ///
scatter mpg weight if rep78 == 3 || ///
scatter mpg weight if rep78 == 4 || ///
scatter mpg weight if rep78 == 5, ///
legend(order(2 "1978 Repair Record = 1" ///
3 "1978 Repair Record = 2" 4 "1978 Repair Record = 3" ///
5 "1978 Repair Record = 4" 6 "1978 Repair Record = 5")) ///
scheme(ggtest2)
Ex 3.
Create a theme file that would emulate the original s2color
scheme settings controlled by brewtheme
// Change the end of line delimiter
#d ;
// Generates a theme in the style of s2color
brewtheme s2theme, graphsi("x 5.5" "y 4") numsty("legend_cols 2" "legend_rows 0"
"zyx2rows 0" "zyx2cols 1") gsize("label medsmall" "small_label small"
"text medium" "body medsmall" "small_body small" "heading large"
"axis_title medsmall" "matrix_label medlarge" "matrix_marklbl small"
"key_label medsmall" "note small" "star medsmall" "text_option medsmall"
"minor_tick half_tiny" "tick_label medsmall" "tick_biglabel medium"
"title_gap vsmall" "key_gap vsmall" "key_linespace vsmall" "legend_key_xsize 13"
"legend_key_ysize medsmall" "clegend_width huge" "pielabel_gap zero"
"plabel small" "pboxlabel small" "sts_risktable_space third_tiny"
"sts_risktable_tgap zero" "sts_risktable_lgap zero" "minortick half_tiny"
"pie_explode medium") relsize("bar_groupgap 67pct" "dot_supgroupgap 67pct"
"box_gap 33pct" "box_supgroupgap 200pct" "box_outergap 20pct" "box_fence 67pct")
symbolsi("smallsymbol small" "histogram medlarge" "ci medium" "ci2 medium"
"matrix medium" "refmarker medlarge" "parrowbarb zero")
color("background ltbluishgray" "foreground black" "backsymbol gs8"
"heading dknavy" "box bluishgray" "textbox bluishgray"
"mat_label_box bluishgray" "text_option_line black"
"text_option_fill bluishgray" "filled bluishgray" "bylabel_outline bluishgray"
"reverse_big navy" "reverse_big_line navy" "grid ltbluishgray"
"major_grid ltbluishgray" "minor_grid gs5" "matrix navy" "matrixmarkline navy"
"histback gold" "legend_line black" "clegend white" "clegend_line black"
"pboxlabelfill bluishgray" "plabelfill bluishgray")
linepattern("foreground solid" "background solid" "grid solid"
"major_grid solid" "minor_grid dot" "text_option solid")
linesty("textbox foreground" "grid grid" "major_grid major_grid"
"minor_grid minor_grid" "legend legend") linewidth("p medium" "foreground thin"
"background thin" "grid medium" "major_grid medium" "minor_grid thin"
"tick thin" "minortick thin" "ci_area medium" "ci2_area medium"
"histogram medium" "dendrogram medium" "xyline medium" "refmarker medium"
"matrixmark medium" "dots vvthin" "dot_area medium" "dotmark thin"
"plotregion thin" "legend thin" "clegend thin" "pie medium" "sunflower medium"
"text_option thin" "pbar vvvthin") textboxsty("note small_body"
"leg_caption body") axissty("bar_super horizontal_nolinetick"
"dot_super horizontal_nolinetick" "bar_scale_horiz horizontal_withgrid"
"bar_scale_vert vertical_withgrid" "box_scale_horiz horizontal_withgrid"
"box_scale_vert vertical_withgrid") clockdir("caption_position 7"
"legend_position 6" "by_legend_position 6" "p 3" "legend_caption_position 7")
gridringsty("caption_ring 5" "legend_caption_ring 5")
anglesty("vertical_tick vertical") yesno("extend_axes_low no"
"extend_axes_high no" "draw_major_vgrid yes" "use_labels_on_ticks no"
"title_span no" "subtitle_span no" "caption_span no"
"note_span no" "legend_span no") barlabelsty("bar none");
Additional information
In addition to generating the user specified scheme, as of commit cd5cd84e83b513ef824ef61ca5e5b9124650076b, the brewtheme
and brewscheme
programs now automatically generate color vision impaired clones of themselves:
theme-ggplot2.theme
theme-ggplot2_achromatopsia.theme
theme-ggplot2_protanopia.theme
theme-ggplot2_deuteranopia.theme
theme-ggplot2_tritanopia.theme
scheme-ggtest2.scheme
scheme-ggtest2_achromatopsia.scheme
scheme-ggtest2_protanopia.scheme
scheme-ggtest2_deuteranopia.scheme
scheme-ggtest2_tritanopia.scheme
abovebelow -- is an optional argument for brewtheme.
Key(s) | Valid Values | Default Values |
---|---|---|
star (line 1756)* | above | below | below |
(line #)*: these entries are not directly documented, but the line numbers show you where these values appear in the s2color scheme file.
anglestyle -- is an optional argument for brewtheme.
Key(s) | Valid Values | Default Values |
---|---|---|
clegend (line 1504)* | angle styles | horizontal |
horizontal_tick | angle styles | horizontal |
p (line 1505)* | angle styles | stdarrow |
parrow (line 1506)* | angle styles | stdarrow |
parrowbarb (line 1507)* | angle styles | zero |
vertical_tick | angle styles | horizontal |
(line #)*: these entries are not directly documented, but the line numbers show you where these values appear in the s2color scheme file.
areastyle -- is an optional argument for brewtheme.
Key(s) | Valid Values | Default Values |
---|---|---|
background | area styles | background |
bar_iplotregion | area styles | none |
bar_plotregion | area styles | plotregion |
box_iplotregion | area styles | none |
box_plotregion | area styles | plotregion |
bygraph | area styles | background |
bygraph_iplotregion | area styles | none |
bygraph_plotregion | area styles | none |
ci | area styles | ci |
ci2 | area styles | ci2 |
clegend (line 1200)* | area styles | clegend_preg |
clegend_inner (line 1204)* | area styles | clegend_inner |
clegend_inpreg (line 1202)* | area styles | none |
clegend_outer (line 1203)* | area styles | clegend_outer |
clegend_preg (line 1201)* | area styles | none |
combine_iplotregion | area styles | none |
combine_plotregion | area styles | none |
combinegraph | area styles | background |
combinegraph_inner | area styles | none |
dendrogram (line 1223)* | area styles | dendrogram |
dot_iplotregion | area styles | none |
dot_plotregion | area styles | plotregion |
dotchart | area styles | dotchart |
foreground | area styles | foreground |
graph | area styles | background |
hbar_iplotregion | area styles | none |
hbar_plotregion | area styles | plotregion |
hbox_iplotregion | area styles | none |
hbox_plotregion | area styles | plotregion |
histogram | area styles | histogram |
inner_bygraph | area styles | none |
inner_graph | area styles | none |
inner_legend | area styles | none |
inner_piegraph | area styles | none |
inner_pieregion | area styles | none |
inner_plotregion | area styles | none |
legend | area styles | legend |
legend_inkey_region | area styles | none |
legend_key_region | area styles | none |
matrix_ilabel (line 1218)* | area styles | none |
matrix_iplotregion | area styles | none |
matrix_label (line 1217)* | area styles | background |
matrix_plotregion | area styles | matrix_plotregion |
matrixgraph_iplotregion | area styles | none |
matrixgraph_plotregion | area styles | none |
piegraph | area styles | background |
piegraph_region | area styles | plotregion |
plotregion | area styles | plotregion |
sunflower (line 1226)* | area styles | sunflower |
sunflowerdb | area styles | sunflowerdb |
sunflowerlb | area styles | sunflowerlb |
twoway_iplotregion | area styles | none |
twoway_plotregion | area styles | plotregion |
(line #)*: these entries are not directly documented, but the line numbers show you where these values appear in the s2color scheme file.
arrowstyle -- is an optional argument for brewtheme.
Key(s) | Valid Values | Default Values |
---|---|---|
default (line 1750)* | graph query arrowstyle | editor |
editor (line 1751)* | graph query arrowstyle | editor |
(line #)*: these entries are not directly documented, but the line numbers show you where these values appear in the s2color scheme file.
axisstyle -- is an optional argument for brewtheme.
Key(s) | Valid Values | Default Values |
---|---|---|
bar_group | axis styles | horizontal_notick |
bar_scale_horiz | axis styles | horizontal_nogrid |
bar_scale_vert | axis styles | vertical_nogrid |
bar_super | axis styles | horizontal_nogrid |
bar_var | axis styles | horizontal_notick |
box_scale_horiz | axis styles | horizontal_nogrid |
box_scale_vert | axis styles | vertical_nogrid |
clegend (line 1394)* | axis styles | clegend |
dot_group | axis styles | horizontal_notick |
dot_scale_horiz | axis styles | horizontal_nogrid |
dot_scale_vert | axis styles | vertical_nogrid |
dot_super | axis styles | horizontal_nogrid |
dot_var | axis styles | horizontal_notick |
horizontal_default | axis styles | horizontal_default |
horizontal_nogrid | axis styles | horizontal_nogrid |
matrix_horiz | axis styles | horizontal_nogrid |
matrix_vert | axis styles | vertical_nogrid |
sts_risktable (line 1393)* | axis styles | sts_risktable |
vertical_default | axis styles | vertical_default |
vertical_nogrid | axis styles | vertical_nogrid |
(line #)*: these entries are not directly documented, but the line numbers show you where these values appear in the s2color scheme file.
barlabelpos -- is an optional argument for brewtheme.
Key(s) | Valid Values | Default Values |
---|---|---|
bar | graph query barlabelpos | outside |
(line #)*: these entries are not directly documented, but the line numbers show you where these values appear in the s2color scheme file.
barlabelstyle -- is an optional argument for brewtheme.
Key(s) | Valid Values | Default Values |
---|---|---|
bar | graph query barlabelstyle | bar |
(line #)*: these entries are not directly documented, but the line numbers show you where these values appear in the s2color scheme file.
barstyle -- is an optional argument for brewtheme.
Key(s) | Valid Values | Default Values |
---|---|---|
box | graph query barstyle | boxdefault |
default | graph query barstyle | default |
dot | graph query barstyle | dotdefault |
(line #)*: these entries are not directly documented, but the line numbers show you where these values appear in the s2color scheme file.
bygraphstyle -- is an optional argument for brewtheme.
Key(s) | Valid Values | Default Values |
---|---|---|
bygraph | bygraph styles | default |
combine | bygraph styles | combine |
default | bygraph styles | default |
(line #)*: these entries are not directly documented, but the line numbers show you where these values appear in the s2color scheme file.
clegendstyle -- is an optional argument for brewtheme.
Key(s) | Valid Values | Default Values |
---|---|---|
default (line 1552)* | clegend styles | default |
(line #)*: these entries are not directly documented, but the line numbers show you where these values appear in the s2color scheme file.
clockdir -- is an optional argument for brewtheme.
Key(s) | Valid Values | Default Values |
---|---|---|
by_legend_position | clock position styles | 12 |
caption_position | clock position styles | 5 |
clegend_title_position (line 1478)* | clock position styles | 12 |
ilabel (line 1467)* | clock position styles | 3 |
legend_caption_position | clock position styles | 5 |
legend_note_position | clock position styles | 7 |
legend_position | clock position styles | 12 |
legend_subtitle_position | clock position styles | 12 |
legend_title_position | clock position styles | 12 |
matrix_marklbl | clock position styles | 12 |
note_position | clock position styles | 7 |
p | clock position styles | 0 |
subtitle_position | clock position styles | 12 |
title_position | clock position styles | 12 |
zyx2legend_position (line 1465)* | clock position styles | 3 |
(line #)*: these entries are not directly documented, but the line numbers show you where these values appear in the s2color scheme file.
color -- is an optional argument for brewtheme.
Key(s) | Valid Values | Default Values |
---|---|---|
axis_title | color styles | black |
axisline | color styles | black |
background | color styles | white |
backsymbol (line 211)* | color styles | none |
body | color styles | black |
box | color styles | none |
bylabel_outline (line 238)* | color styles | white |
clegend (line 285)* | color styles | none |
clegend_inner (line 287)* | color styles | none |
clegend_line (line 288)* | color styles | none |
clegend_outer (line 286)* | color styles | none |
filled | color styles | white |
filled_text | color styles | black |
foreground | color styles | white |
grid (line 244)* | color styles | white |
heading | color styles | black |
histback (line 268)* | color styles | white |
key_label | color styles | black |
label | color styles | black |
legend | color styles | white |
legend_line | color styles | white |
major_grid | color styles | white |
mat_label_box | color styles | white |
matplotregion_line | color styles | black |
matrix | color styles | white |
matrix_label | color styles | black |
matrix_marklbl | color styles | black |
matrix_plotregion | color styles | white |
matrixmarkline | color styles | black |
minor_grid (line 246)* | color styles | white |
minortick | color styles | black |
pboxlabelfill (line 317)* | color styles | white |
plabelfill (line 318)* | color styles | white |
plotregion | color styles | white |
plotregion_line | color styles | white |
pmarkback (line 320)* | color styles | white |
pmarkbkfill (line 321)* | color styles | white |
reverse_big (line 240)* | color styles | none |
reverse_big_line (line 241)* | color styles | black |
reverse_big_text (line 242)* | color styles | white |
small_body | color styles | black |
sts_risk_label (line 225)* | color styles | black |
sts_risk_title (line 226)* | color styles | black |
subheading | color styles | black |
symbol (line 210)* | color styles | black |
text (line 213)* | color styles | black |
text_option | color styles | black |
text_option_fill | color styles | white |
text_option_line | color styles | white |
textbox | color styles | white |
tick | color styles | black |
tick_biglabel (line 223)* | color styles | black |
tick_label | color styles | black |
(line #)*: these entries are not directly documented, but the line numbers show you where these values appear in the s2color scheme file.
compass2dir -- is an optional argument for brewtheme.
Key(s) | Valid Values | Default Values |
---|---|---|
editor (line 1450)* | compass direction styles | east |
graph_aspect | compass direction styles | center |
key_label | compass direction styles | west |
legend_fillpos (line 1446)* | compass direction styles | center |
legend_key (line 1447)* | compass direction styles | default |
p (line 1444)* | compass direction styles | east |
text_option | compass direction styles | center |
(line #)*: these entries are not directly documented, but the line numbers show you where these values appear in the s2color scheme file.
compass3dir -- is an optional argument for brewtheme.
Key(s) | Valid Values | Default Values |
---|---|---|
p (line 1455)* | compass3 direction styles | east |
(line #)*: these entries are not directly documented, but the line numbers show you where these values appear in the s2color scheme file.
connectstyle -- is an optional argument for brewtheme.
Key(s) | Valid Values | Default Values |
---|---|---|
p | connection styles | direct |
(line #)*: these entries are not directly documented, but the line numbers show you where these values appear in the s2color scheme file.
dottypestyle -- is an optional argument for brewtheme.
Key(s) | Valid Values | Default Values |
---|---|---|
dot | graph query dottypestyle | dot |
(line #)*: these entries are not directly documented, but the line numbers show you where these values appear in the s2color scheme file.
graphsize -- is an optional argument for brewtheme.
Key(s) | Valid Values | Default Values |
---|---|---|
x | Real # | 9 |
y | Real # | 6 |
(line #)*: these entries are not directly documented, but the line numbers show you where these values appear in the s2color scheme file.
graphstyle -- is an optional argument for brewtheme.
Key(s) | Valid Values | Default Values |
---|---|---|
default (line 1533)* | graph styles | default |
graph (line 1534)* | graph styles | default |
matrixgraph (line 1535)* | graph styles | matrixgraph |
(line #)*: these entries are not directly documented, but the line numbers show you where these values appear in the s2color scheme file.
gridlinestyle -- is an optional argument for brewtheme.
Key(s) | Valid Values | Default Values |
---|---|---|
default (line 1403)* | grid line styles | default |
(line #)*: these entries are not directly documented, but the line numbers show you where these values appear in the s2color scheme file.
gridringstyle -- is an optional argument for brewtheme.
Key(s) | Valid Values | Default Values |
---|---|---|
by_legend_ring | ring position styles | 3 |
caption_ring | ring position styles | 4 |
clegend_ring (line 1491)* | ring position styles | 3 |
clegend_title_ring (line 1498)* | ring position styles | 7 |
legend_caption_ring | ring position styles | 3 |
legend_note_ring | ring position styles | 3 |
legend_ring | ring position styles | 3 |
legend_subtitle_ring | ring position styles | 6 |
legend_title_ring | ring position styles | 7 |
note_ring | ring position styles | 4 |
spacers_ring (line 1484)* | ring position styles | 11 |
subtitle_ring | ring position styles | 6 |
title_ring | ring position styles | 7 |
zyx2legend_ring (line 1490)* | ring position styles | 4 |
(line #)*: these entries are not directly documented, but the line numbers show you where these values appear in the s2color scheme file.
gridstyle -- is an optional argument for brewtheme.
Key(s) | Valid Values | Default Values |
---|---|---|
major | graph query gridstyle | major |
minor | graph query gridstyle | major |
(line #)*: these entries are not directly documented, but the line numbers show you where these values appear in the s2color scheme file.
gsize -- is an optional argument for brewtheme.
Key(s) | Valid Values | Default Values |
---|---|---|
alternate_gap | text size styles | zero |
axis_space | text size styles | half_tiny |
axis_title | text size styles | small |
axis_title_gap | text size styles | minuscule |
barlabel_gap | text size styles | tiny |
body | text size styles | small |
clegend_height (line 128)* | text size styles | zero |
clegend_width (line 127)* | text size styles | medsmall |
dot_rectangle | text size styles | third_tiny |
filled_text | text size styles | medsmall |
gap | text size styles | tiny |
heading | text size styles | medlarge |
key_gap | text size styles | small |
key_label | text size styles | small |
key_linespace (line 108)* | text size styles | small |
label | text size styles | small |
label_gap | text size styles | half_tiny |
legend_col_gap | text size styles | large |
legend_colgap (line 110)* | text size styles | medium |
legend_key_gap | text size styles | vsmall |
legend_key_xsize | text size styles | small |
legend_key_ysize | text size styles | small |
legend_row_gap | text size styles | tiny |
matrix_label | text size styles | medium |
matrix_marklbl | text size styles | small |
matrix_mlblgap | text size styles | half_tiny |
minortick | text size styles | third_tiny |
minortick_label | text size styles | vsmall |
note (line 89)* | text size styles | vsmall |
notickgap | text size styles | tiny |
pboxlabel | text size styles | vsmall |
pie_explode | text size styles | medsmall |
pielabel_gap | text size styles | medsmall |
plabel (line 133)* | text size styles | vsmall |
reverse_big (line 104)* | text size styles | large |
small_body | text size styles | vsmall |
small_label | text size styles | vsmall |
star (line 90)* | text size styles | small |
star_gap (line 109)* | text size styles | minuscule |
sts_risk_label (line 142)* | text size styles | medsmall |
sts_risk_tick (line 144)* | text size styles | zero |
sts_risk_title (line 143)* | text size styles | medsmall |
sts_risktable_lgap (line 141)* | text size styles | tiny |
sts_risktable_space (line 139)* | text size styles | tiny |
sts_risktable_tgap (line 140)* | text size styles | tiny |
subheading | text size styles | medium |
text | text size styles | medsmall |
text_option | text size styles | small |
tick | text size styles | tiny |
tick_biglabel | text size styles | small |
tick_label | text size styles | small |
tickgap | text size styles | half_tiny |
title_gap | text size styles | small |
zyx2colgap (line 125)* | text size styles | large |
zyx2legend_key_gap (line 121)* | text size styles | tiny |
zyx2legend_key_xsize (line 122)* | text size styles | vhuge |
zyx2legend_key_ysize (line 123)* | text size styles | medium |
zyx2rowgap (line 124)* | text size styles | zero |
(line #)*: these entries are not directly documented, but the line numbers show you where these values appear in the s2color scheme file.
horizontal -- is an optional argument for brewtheme.
Key(s) | Valid Values | Default Values |
---|---|---|
axis_title | horizontal justification styles | center |
body | horizontal justification styles | center |
editor (line 1353)* | horizontal justification styles | left |
filled (line 1351)* | horizontal justification styles | center |
heading | horizontal justification styles | center |
key_label | horizontal justification styles | left |
label | horizontal justification styles | center |
matrix_label | horizontal justification styles | center |
small_body (line 1348)* | horizontal justification styles | center |
sts_risk_label (line 1354)* | horizontal justification styles | default |
sts_risk_title (line 1355)* | horizontal justification styles | right |
subheading | horizontal justification styles | center |
text_option | horizontal justification styles | center |
(line #)*: these entries are not directly documented, but the line numbers show you where these values appear in the s2color scheme file.
labelstyle -- is an optional argument for brewtheme.
Key(s) | Valid Values | Default Values |
---|---|---|
editor (line 1558)* | label styles | editor |
ilabel (line 1556)* | label styles | ilabel |
matrix | label styles | matrix |
sunflower (line 1559)* | label styles | default |
(line #)*: these entries are not directly documented, but the line numbers show you where these values appear in the s2color scheme file.
legendstyle -- is an optional argument for brewtheme.
Key(s) | Valid Values | Default Values |
---|---|---|
default (line 1548)* | legend styles | default |
zyx2 (line 1549)* | legend styles | zyx2 |
(line #)*: these entries are not directly documented, but the line numbers show you where these values appear in the s2color scheme file.
linepattern -- is an optional argument for brewtheme.
Key(s) | Valid Values | Default Values |
---|---|---|
axisline | line pattern styles | solid |
background | line pattern styles | solid |
ci | line pattern styles | solid |
ci_area | line pattern styles | solid |
clegend (line 438)* | line pattern styles | solid |
dendrogram (line 421)* | line pattern styles | solid |
dot (line 433)* | line pattern styles | solid |
dot_area | line pattern styles | solid |
dotmark (line 435)* | line pattern styles | solid |
dots (line 432)* | line pattern styles | solid |
foreground | line pattern styles | blank |
grid (line 422)* | line pattern styles | blank |
histogram | line pattern styles | solid |
legend | line pattern styles | solid |
major_grid | line pattern styles | blank |
matrix_plotregion | line pattern styles | solid |
matrixmark (line 431)* | line pattern styles | solid |
minor_grid (line 424)* | line pattern styles | blank |
minortick | line pattern styles | solid |
p | line pattern styles | solid |
pie (line 436)* | line pattern styles | solid |
plotregion | line pattern styles | solid |
pmark (line 446)* | line pattern styles | solid |
refline | line pattern styles | solid |
refmarker | line pattern styles | solid |
sunflower (line 440)* | line pattern styles | solid |
text_option | line pattern styles | blank |
tick | line pattern styles | solid |
xyline | line pattern styles | solid |
zyx2 (line 443)* | line pattern styles | solid |
(line #)*: these entries are not directly documented, but the line numbers show you where these values appear in the s2color scheme file.
linestyle -- is an optional argument for brewtheme.
Key(s) | Valid Values | Default Values |
---|---|---|
axis | line style options | axisline |
axis_withgrid | line style options | foreground |
background | line style options | background |
box_median | line style options | refline |
box_whiskers | line style options | ci |
boxline (line 716)* | line style options | foreground |
ci | line style options | ci |
ci2 | line style options | ci2 |
ci2_area | line style options | ci2_area |
ci_area | line style options | ci_area |
clegend (line 746)* | line style options | clegend |
clegend_inner (line 748)* | line style options | none |
clegend_outer (line 747)* | line style options | none |
clegend_preg (line 749)* | line style options | foreground |
dendrogram (line 730)* | line style options | dendrogram |
dotchart | line style options | dotchart |
dotchart_area | line style options | dotchart_area |
dotmark | line style options | dotmark |
dots (line 754)* | line style options | dot |
editor (line 755)* | line style options | editor |
foreground | line style options | foreground |
grid (line 731)* | line style options | none |
histback (line 729)* | line style options | histogram |
histogram | line style options | histogram |
legend | line style options | none |
major_grid | line style options | none |
mat_label_box | line style options | foreground |
matrix (line 733)* | line style options | p1solid |
matrix_plotregion | line style options | matrix_plotregion |
matrixmark | line style options | matrixmark |
minor_grid (line 733)* | line style options | none |
minortick | line style options | minortick |
pboxlabel (line 977)* | line style options | foreground |
pboxmarkback (line 974)* | line style options | background |
pie_lines | line style options | pie |
plabel (line 976)* | line style options | foreground |
plotregion | line style options | plotregion |
pmarkback (line 973)* | line style options | background |
refline | line style options | refline |
refmarker | line style options | refmarker |
reverse_big (line 751)* | line style options | reverse_big |
star (line 723)* | line style options | p1 |
sts_risktable (line 762)* | line style options | none |
sunflower | line style options | sunflower |
sunflowerdb | line style options | sunflowerdb |
sunflowerdf | line style options | sunflowerdf |
sunflowerlb | line style options | sunflowerlb |
sunflowerlf | line style options | sunflowerlf |
symbol (line 715)* | line style options | symbol |
text_option | line style options | text_option |
textbox | line style options | none |
tick | line style options | tick |
xyline | line style options | xyline |
zero_line (line 720)* | line style options | foreground |
zyx2 (line 763)* | line style options | zyx2 |
(line #)*: these entries are not directly documented, but the line numbers show you where these values appear in the s2color scheme file.
linewidth -- is an optional argument for brewtheme.
Key(s) | Valid Values | Default Values |
---|---|---|
axisline | line width styles | thin |
background | line width styles | none |
ci | line width styles | medium |
ci2 | line width styles | medium |
ci2_area | line width styles | medthin |
ci_area | line width styles | medthin |
clegend (line 1014)* | line width styles | none |
dendrogram (line 1003)* | line width styles | medium |
dot_area | line width styles | medthin |
dot_line | line width styles | medthick |
dotmark | line width styles | vthin |
dots (line 1008)* | line width styles | vthin |
foreground | line width styles | none |
grid (line 992)* | line width styles | none |
histogram | line width styles | vthin |
legend | line width styles | none |
major_grid | line width styles | none |
matrix_plotregion | line width styles | thin |
matrixmark | line width styles | vvthin |
medium (line 988)* | line width styles | medium |
minor_grid (line 994)* | line width styles | none |
minortick | line width styles | vvthin |
p (line 989)* | line width styles | vthin |
pbar (line 1022)* | line width styles | vthin |
pie | line width styles | vthin |
plotregion | line width styles | vthin |
refline | line width styles | medium |
refmarker | line width styles | medthin |
reverse_big (line 1016)* | line width styles | thin |
sunflower | line width styles | thin |
text_option | line width styles | none |
thin (line 987)* | line width styles | thin |
tick | line width styles | vthin |
xyline | line width styles | medthin |
zyx2 (line 1020)* | line width styles | medium |
(line #)*: these entries are not directly documented, but the line numbers show you where these values appear in the s2color scheme file.
margin -- is an optional argument for brewtheme.
Key(s) | Valid Values | Default Values |
---|---|---|
axis_title | margin styles | zero |
bargraph | margin styles | bargraph |
body | margin styles | vsmall |
boxgraph | margin styles | bargraph |
by_indiv | margin styles | small |
bygraph | margin styles | zero |
cleg_title (line 586)* | margin styles | medsmall |
clegend (line 587)* | margin styles | medium |
clegend_boxmargin (line 588)* | margin styles | small |
combine_region | margin styles | zero |
combinegraph | margin styles | medsmall |
dotgraph | margin styles | bargraph |
editor (line 591)* | margin styles | zero |
filled_box (line 590)* | margin styles | zero |
filled_textbox (line 589)* | margin styles | small |
graph | margin styles | medium |
hbargraph | margin styles | bargraph |
hboxgraph | margin styles | bargraph |
hdotgraph (line 581)* | margin styles | bargraph |
heading | margin styles | vsmall |
key_label | margin styles | zero |
key_label | margin styles | zero |
label | margin styles | zero |
legend | margin styles | small |
legend_boxmargin | margin styles | small |
legend_key_region | margin styles | tiny |
mat_label_box | margin styles | zero |
matrix_label | margin styles | zero |
matrix_plotreg | margin styles | small |
matrixgraph | margin styles | zero |
pboxlabel (line 595)* | margin styles | zero |
pboxlabelbox (line 596)* | margin styles | zero |
piegraph | margin styles | small |
piegraph_region | margin styles | medsmall |
plabel (line 593)* | margin styles | zero |
plabelbox (line 594)* | margin styles | zero |
plotregion | margin styles | medsmall |
small_body | margin styles | vsmall |
star (line 575)* | margin styles | tiny |
subheading | margin styles | vsmall |
text | margin styles | vsmall |
text_option | margin styles | zero |
textbox | margin styles | zero |
twoway (line 552)* | margin styles | medsmall |
(line #)*: these entries are not directly documented, but the line numbers show you where these values appear in the s2color scheme file.
medtypestyle -- is an optional argument for brewtheme.
Key(s) | Valid Values | Default Values |
---|---|---|
boxplot | graph query medtypestyle | line |
(line #)*: these entries are not directly documented, but the line numbers show you where these values appear in the s2color scheme file.
numstyle -- is an optional argument for brewtheme.
Key(s) | Valid Values | Default Values |
---|---|---|
bar_num_dots (line 49)* | Integer | 100 |
dot_extend_high | 0|1 | 0 |
dot_extend_low | 0|1 | 0 |
dot_num_dots | Integer | 100 |
graph_aspect | Real # | 0 |
grid_outer_tol | Real # | 0.23 |
legend_cols | Integer | 5 |
legend_rows | Integer | 0 |
max_wted_symsize | Real # (Max Symbol Size in Bubble Plots) | 10 |
pie_angle | Real # | 90 |
zyx2cols (line 41)* | Integer | 2 |
zyx2rows (line 40)* | Integer | 4 |
(line #)*: these entries are not directly documented, but the line numbers show you where these values appear in the s2color scheme file.
numticks -- is an optional argument for brewtheme.
Key(s) | Valid Values | Default Values |
---|---|---|
horizontal_major | Integer # | 5 |
horizontal_minor | Integer # | 0 |
horizontal_tmajor | Integer # | 0 |
horizontal_tminor | Integer # | 0 |
major | Integer # | 5 |
vertical_major | Integer # | 5 |
vertical_minor | Integer # | 0 |
vertical_tmajor | Integer # | 0 |
vertical_tminor | Integer # | 0 |
(line #)*: these entries are not directly documented, but the line numbers show you where these values appear in the s2color scheme file.
piegraphstyle -- is an optional argument for brewtheme.
Key(s) | Valid Values | Default Values |
---|---|---|
piegraph | by graph styles | default |
(line #)*: these entries are not directly documented, but the line numbers show you where these values appear in the s2color scheme file.
pielabelstyle -- is an optional argument for brewtheme.
Key(s) | Valid Values | Default Values |
---|---|---|
default (line 1748)* | pie graph label styles | none |
(line #)*: these entries are not directly documented, but the line numbers show you where these values appear in the s2color scheme file.
plotregionstyle -- is an optional argument for brewtheme.
Key(s) | Valid Values | Default Values |
---|---|---|
bargraph | plot region style | bargraph |
boxgraph | plot region style | boxgraph |
bygraph | plot region style | bygraph |
clegend (line 1529)* | plot region style | clegend |
combinegraph | plot region style | matrixgraph |
combineregion | plot region style | combineregion |
graph | plot region style | graph |
hbargraph | plot region style | hbargraph |
hboxgraph | plot region style | hboxgraph |
legend_key_region (line 1528)* | plot region style | legend_key_region |
matrix | plot region style | matrix |
matrix_label | plot region style | matrix_label |
matrixgraph | plot region style | matrixgraph |
piegraph | plot region style | piegraph |
twoway | plot region style | twoway |
(line #)*: these entries are not directly documented, but the line numbers show you where these values appear in the s2color scheme file.
relativepos -- is an optional argument for brewtheme.
Key(s) | Valid Values | Default Values |
---|---|---|
clegend_axispos (line 1482)* | relative position styles | right |
clegend_pos (line 1481)* | relative position styles | right |
zyx2legend_pos (line 1480)* | relative position styles | right |
(line #)*: these entries are not directly documented, but the line numbers show you where these values appear in the s2color scheme file.
relsize -- is an optional argument for brewtheme.
Key(s) | Valid Values | Default Values |
---|---|---|
bar_gap | Real #pct | 0pct |
bar_groupgap | Real #pct | 80pct |
bar_outergap | Real #pct | 20pct |
bar_supgroupgap | Real #pct | 200pct |
box_fence (line 160)* | Real #pct | 75pct |
box_fencecap (line 161)* | Real #pct | 0pct |
box_gap | Real #pct | 50pct |
box_groupgap | Real #pct | 100pct |
box_outergap | Real #pct | 25pct |
box_supgroupgap | Real #pct | 150pct |
dot_gap | Real #pct | neg100pct |
dot_groupgap | Real #pct | 0pct |
dot_outergap | Real #pct | 0pct |
dot_supgroupgap | Real #pct | 75pct |
(line #)*: these entries are not directly documented, but the line numbers show you where these values appear in the s2color scheme file.
special -- is an optional argument for brewtheme.
Key(s) | Valid Values | Default Values |
---|---|---|
by_knot1 | scheme by scaling | 3 |
by_slope1 | scheme by scaling | .3 |
by_slope2 | scheme by scaling | 1 |
combine_knot1 | scheme by scaling | 3 |
combine_slope1 | scheme by scaling | .5 |
combine_slope2 | scheme by scaling | 1 |
default_knot1 (line 59)* | scheme by scaling | 4 |
default_slope1 (line 58)* | scheme by scaling | .3 |
default_slope2 (line 60)* | scheme by scaling | 1 |
matrix_knot1 | scheme by scaling | 4 |
matrix_slope1 | scheme by scaling | .3 |
matrix_slope2 | scheme by scaling | 1 |
matrix_xaxis | axis options | "xlabels(#3, axis(X))" |
matrix_yaxis | axis options | "ylabels(#3, angle(horizontal) axis(Y))" |
(line #)*: these entries are not directly documented, but the line numbers show you where these values appear in the s2color scheme file.
starstyle -- is an optional argument for brewtheme.
Key(s) | Valid Values | Default Values |
---|---|---|
default (line 1754)* | star styles | default |
(line #)*: these entries are not directly documented, but the line numbers show you where these values appear in the s2color scheme file.
sunflowerstyle -- is an optional argument for brewtheme.
Key(s) | Valid Values | Default Values |
---|---|---|
sunflower | sunflower plot styles | sunflower |
(line #)*: these entries are not directly documented, but the line numbers show you where these values appear in the s2color scheme file.
symbol -- is an optional argument for brewtheme.
Key(s) | Valid Values | Default Values |
---|---|---|
ci | symbol styles | circle |
ci2 | symbol styles | circle |
dots | symbol styles | circle |
histback (line 377)* | symbol styles | none |
histogram | symbol styles | circle |
ilabel (line 381)* | symbol styles | none |
matrix | symbol styles | circle |
none | symbol styles | none |
p | symbol styles | circle |
pback (line 386)* | symbol styles | none |
pbarback (line 387)* | symbol styles | none |
pdotback (line 388)* | symbol styles | none |
refmarker | symbol styles | circle |
sunflower | symbol styles | circle_hollow |
(line #)*: these entries are not directly documented, but the line numbers show you where these values appear in the s2color scheme file.
symbolsize -- is an optional argument for brewtheme.
Key(s) | Valid Values | Default Values |
---|---|---|
backsymbol (line 178)* | size options | large |
backsymspace (line 179)* | size options | large |
ci | size options | medlarge |
ci2 | size options | medlarge |
dots | size options | vtiny |
histback (line 170)* | size options | vlarge |
histogram | size options | medium |
matrix | size options | medsmall |
p | size options | medium |
parrow (line 182)* | size options | medium |
parrowbarb (line 183)* | size options | medsmall |
pback (line 181)* | size options | zero |
refmarker | size options | medium |
smallsymbol (line 166)* | size options | medsmall |
star (line 168)* | size options | vlarge |
sunflower | size options | medium |
symbol | size options | medium |
(line #)*: these entries are not directly documented, but the line numbers show you where these values appear in the s2color scheme file.
textboxstyle -- is an optional argument for brewtheme.
Key(s) | Valid Values | Default Values |
---|---|---|
axis_title | text box styles | axis_title |
b1title | text box styles | subheading |
b2title | text box styles | body |
barlabel | text box styles | small_label |
bigtick (line 1119)* | text box styles | tick_biglabel |
body | text box styles | body |
bytitle (line 1129)* | text box styles | bytitle |
caption | text box styles | body |
cleg_caption (line 1095)* | text box styles | body |
cleg_note (line 1096)* | text box styles | small_body |
cleg_subtitle (line 1095)* | text box styles | subheading |
cleg_title (line 1093)* | text box styles | clegend |
editor (line 1131)* | text box styles | editor |
heading | text box styles | heading |
ilabel | text box styles | small_label |
key_label | text box styles | key_label |
l1title | text box styles | subheading |
l2title | text box styles | body |
label | text box styles | label |
leg_caption | text box styles | small_body |
leg_note | text box styles | small_body |
leg_subtitle | text box styles | subheading |
leg_title | text box styles | heading |
legend_key | text box styles | legend_key |
matrix_label | text box styles | matrix_label |
matrix_marklbl | text box styles | matrix_marklbl |
minortick | text box styles | minortick_label |
note | text box styles | body |
pielabel | text box styles | small_label |
r1title | text box styles | subheading |
r2title | text box styles | body |
small_label | text box styles | small_label |
star (line 1128)* | text box styles | star_label |
sts_risktable (line 1120)* | text box styles | sts_risktable |
subheading | text box styles | subheading |
subtitle | text box styles | subheading |
t1title | text box styles | subheading |
t2title | text box styles | body |
text_option | text box styles | text_option |
tick | text box styles | tick_label |
title | text box styles | heading |
(line #)*: these entries are not directly documented, but the line numbers show you where these values appear in the s2color scheme file.
tickposition -- is an optional argument for brewtheme.
Key(s) | Valid Values | Default Values |
---|---|---|
axis_tick | inside, outside, or crossing | outside |
(line #)*: these entries are not directly documented, but the line numbers show you where these values appear in the s2color scheme file.
ticksetstyle -- is an optional argument for brewtheme.
Key(s) | Valid Values | Default Values |
---|---|---|
major_clegend (line 1437)* | tick set styles | major_clegend |
major_horiz_default | tick set styles | major_horiz_default |
major_horiz_nolabel | tick set styles | major_horiz_nolabel |
major_horiz_notick | tick set styles | major_horiz_notick |
major_horiz_notickbig (line 1434)* | tick set styles | major_horiz_notickbig |
major_horiz_withgrid | tick set styles | major_horiz_default |
major_vert_default | tick set styles | major_vert_default |
major_vert_nolabel | tick set styles | major_vert_nolabel |
major_vert_notick | tick set styles | major_vert_notick |
major_vert_notickbig (line 1435)* | tick set styles | major_vert_notickbig |
major_vert_withgrid | tick set styles | major_vert_default |
minor_horiz_default | tick set styles | minor_horiz_default |
minor_horiz_nolabel | tick set styles | minor_horiz_nolabel |
minor_horiz_notick | tick set styles | minor_horiz_notick |
minor_vert_default | tick set styles | minor_vert_default |
minor_vert_nolabel | tick set styles | minor_vert_nolabel |
minor_vert_notick (line 1436)* | tick set styles | minor_vert_notick |
sts_risktable (line 1436)* | tick set styles | sts_risktable |
(line #)*: these entries are not directly documented, but the line numbers show you where these values appear in the s2color scheme file.
tickstyle -- is an optional argument for brewtheme.
Key(s) | Valid Values | Default Values |
---|---|---|
default (line 1407)* | tick styles | default |
major | tick styles | major |
major_nolabel | tick styles | major_nolabel |
major_notick | tick styles | major_notick |
major_notickbig (line 1414)* | tick styles | major_notickbig |
minor | tick styles | minor |
minor_nolabel | tick styles | minor_nolabel |
minor_notick | tick styles | minor_notick |
minor_notickbig (line 1415)* | tick styles | minor_notickbig |
sts_risktable (line 1416)* | tick styles | sts_risktable |
(line #)*: these entries are not directly documented, but the line numbers show you where these values appear in the s2color scheme file.
verticaltext -- is an optional argument for brewtheme.
Key(s) | Valid Values | Default Values |
---|---|---|
axis_title | vertical justification styles | bottom |
body | vertical justification styles | bottom |
filled (line 1370)* | vertical justification styles | middle |
heading | vertical justification styles | bottom |
key_label | vertical justification styles | middle |
label | vertical justification styles | middle |
legend (line 1368)* | vertical justification styles | bottom |
matrix_label | vertical justification styles | middle |
small_body | vertical justification styles | bottom |
subheading | vertical justification styles | bottom |
text_option | vertical justification styles | middle |
(line #)*: these entries are not directly documented, but the line numbers show you where these values appear in the s2color scheme file.
yesno -- is an optional argument for brewtheme.
Key(s) | Valid Values | Default Values |
---|---|---|
adj_xmargins (line 1722)* | yes | no | no |
adj_ymargins (line 1723)* | yes | no | no |
alt_xaxes | yes | no | no |
alt_yaxes | yes | no | no |
alternate_labels | yes | no | no |
bar_reverse_scale | yes | no | no |
box_custom_whiskers | yes | no | no |
box_hollow (line 1676)* | yes | no | no |
box_reverse_scale | yes | no | no |
by_alternate_xaxes (line 1682)* | yes | no | no |
by_alternate_yaxes (line 1683)* | yes | no | no |
by_edgelabel | yes | no | yes |
by_indiv_as_whole | yes | no | no |
by_indiv_xaxes | yes | no | no |
by_indiv_xlabels | yes | no | yes |
by_indiv_xrescale | yes | no | no |
by_indiv_xticks | yes | no | yes |
by_indiv_xtitles | yes | no | no |
by_indiv_yaxes | yes | no | no |
by_indiv_ylabels | yes | no | yes |
by_indiv_yrescale | yes | no | no |
by_indiv_yticks | yes | no | yes |
by_indiv_ytitles | yes | no | no |
by_outer_xaxes | yes | no | yes |
by_outer_xtitles | yes | no | yes |
by_outer_yaxes | yes | no | yes |
by_outer_ytitles | yes | no | yes |
by_shrink_indiv | yes | no | no |
by_shrink_plotregion | yes | no | no |
by_skip_xalternate (line 1684)* | yes | no | no |
by_skip_yalternate (line 1685)* | yes | no | no |
caption_span | yes | no | yes |
clegend_title_span (line 1720)* | yes | no | yes |
cmissings (line 1598)* | yes | no | yes |
connect_missings (line 1597)* | yes | no | yes |
contours_colorlines (line 1730)* | yes | no | no |
contours_outline (line 1728)* | yes | no | no |
contours_reversekey (line 1729)* | yes | no | no |
dot_reverse_scale | yes | no | no |
draw_major_grid (line 1607)* | yes | no | no |
draw_major_hgrid | yes | no | no |
draw_major_nl_hgrid | yes | no | no |
draw_major_nl_vgrid | yes | no | no |
draw_major_nlt_hgrid | yes | no | no |
draw_major_nlt_vgrid | yes | no | no |
draw_major_nt_hgrid | yes | no | no |
draw_major_nt_vgrid | yes | no | no |
draw_major_vgrid | yes | no | no |
draw_majornl_grid (line 1609)* | yes | no | no |
draw_majornl_hgrid | yes | no | no |
draw_majornl_nl_hgrid | yes | no | no |
draw_majornl_nl_vgrid | yes | no | no |
draw_majornl_nlt_hgrid | yes | no | no |
draw_majornl_nlt_vgrid | yes | no | no |
draw_majornl_nt_hgrid | yes | no | no |
draw_majornl_nt_vgrid | yes | no | no |
draw_majornl_vgrid | yes | no | no |
draw_minor_grid (line 1608)* | yes | no | no |
draw_minor_hgrid | yes | no | no |
draw_minor_nl_hgrid | yes | no | no |
draw_minor_nl_vgrid | yes | no | no |
draw_minor_nlt_hgrid | yes | no | no |
draw_minor_nlt_vgrid | yes | no | no |
draw_minor_nt_hgrid | yes | no | no |
draw_minor_nt_vgrid | yes | no | no |
draw_minor_vgrid | yes | no | no |
draw_minornl_grid (line 1610)* | yes | no | no |
draw_minornl_hgrid | yes | no | no |
draw_minornl_nl_hgrid | yes | no | no |
draw_minornl_nl_vgrid | yes | no | no |
draw_minornl_nlt_hgrid | yes | no | no |
draw_minornl_nlt_vgrid | yes | no | no |
draw_minornl_nt_hgrid | yes | no | no |
draw_minornl_nt_vgrid | yes | no | no |
draw_minornl_vgrid | yes | no | no |
extend_axes_full_high | yes | no | yes |
extend_axes_full_low | yes | no | yes |
extend_axes_high | yes | no | yes |
extend_axes_low | yes | no | yes |
extend_dots | yes | no | yes |
extend_grid_high (line 1644)* | yes | no | yes |
extend_grid_low (line 1643)* | yes | no | yes |
extend_majorgrid_high | yes | no | yes |
extend_majorgrid_low | yes | no | yes |
extend_minorgrid_high | yes | no | yes |
extend_minorgrid_low | yes | no | yes |
grid_draw_max | yes | no | no |
grid_draw_min | yes | no | no |
grid_force_nomax | yes | no | no |
grid_force_nomin | yes | no | no |
legend_col_first | yes | no | no |
legend_force_draw | yes | no | no |
legend_force_keysz | yes | no | no |
legend_force_nodraw | yes | no | no |
legend_span | yes | no | yes |
legend_stacked | yes | no | no |
legend_text_first | yes | no | no |
mat_label_as_textbox (line 1705)* | yes | no | yes |
mat_label_box (line 1704)* | yes | no | yes |
note_span | yes | no | yes |
pboxlabelboxed (line 1726)* | yes | no | no |
pcmissings | yes | no | yes |
pie_clockwise | yes | no | yes |
plabelboxed (line 1725)* | yes | no | no |
subtitle_span | yes | no | yes |
swap_bar_groupaxis | yes | no | no |
swap_bar_scaleaxis | yes | no | no |
swap_box_groupaxis | yes | no | no |
swap_box_scaleaxis | yes | no | no |
swap_dot_groupaxis | yes | no | no |
swap_dot_scaleaxis | yes | no | no |
text_option | yes | no | no |
textbox | yes | no | no |
title_span | yes | no | yes |
use_labels_on_ticks | yes | no | yes |
x2axis_ontop | yes | no | yes |
xyline_extend_high | yes | no | yes |
xyline_extend_low | yes | no | yes |
y2axis_onright | yes | no | yes |
zyx2legend_span (line 1719)* | yes | no | no |
(line #)*: these entries are not directly documented, but the line numbers show you where these values appear in the s2color scheme file.
zyx2rule -- is an optional argument for brewtheme.
Key(s) | Valid Values | Default Values |
---|---|---|
contour (line 1758)* | zyx2 rule styles | intensity |
hue |
(line #)*: these entries are not directly documented, but the line numbers show you where these values appear in the s2color scheme file.
zyx2style -- is an optional argument for brewtheme.
Key(s) | Valid Values | Default Values |
---|---|---|
default (line 1762)* | zyx2 styles | default |
(line #)*: these entries are not directly documented, but the line numbers show you where these values appear in the s2color scheme file.