This function returns a ggplot2 theme that is black borded with black font.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27  | theme_ArchR(
  color = "black",
  textFamily = "sans",
  baseSize = 10,
  baseLineSize = 0.5,
  baseRectSize = 0.5,
  plotMarginCm = 1,
  legendPosition = "bottom",
  legendTextSize = 5,
  axisTickCm = 0.1,
  xText90 = FALSE,
  yText90 = FALSE
)
theme_ArchR(
  color = "black",
  textFamily = "sans",
  baseSize = 10,
  baseLineSize = 0.5,
  baseRectSize = 0.5,
  plotMarginCm = 1,
  legendPosition = "bottom",
  legendTextSize = 5,
  axisTickCm = 0.1,
  xText90 = FALSE,
  yText90 = FALSE
)
 | 
color | 
 The color to be used for text, lines, ticks, etc for the plot.  | 
textFamily | 
 The font default family to be used for the plot.  | 
baseSize | 
 The base font size (in points) to use in the plot.  | 
baseLineSize | 
 The base line width (in points) to be used throughout the plot.  | 
baseRectSize | 
 The base line width (in points) to use for rectangular boxes throughout the plot.  | 
plotMarginCm | 
 The width in centimeters of the whitespace margin around the plot.  | 
legendPosition | 
 The location to put the legend. Valid options are "bottom", "top", "left", and "right.  | 
legendTextSize | 
 The base text size (in points) for the legend text.  | 
axisTickCm | 
 The length in centimeters to be used for the axis ticks.  | 
xText90 | 
 A boolean value indicating whether the x-axis text should be rotated 90 degrees counterclockwise.  | 
yText90 | 
 A boolean value indicating whether the y-axis text should be rotated 90 degrees counterclockwise.  | 
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.