EVOLUTION-MANAGER
Edit File: hc_theme.html
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"><html xmlns="http://www.w3.org/1999/xhtml"><head><title>R: Creating highcharter themes</title> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <link rel="stylesheet" type="text/css" href="R.css" /> </head><body> <table width="100%" summary="page for hc_theme {highcharter}"><tr><td>hc_theme {highcharter}</td><td style="text-align: right;">R Documentation</td></tr></table> <h2>Creating highcharter themes</h2> <h3>Description</h3> <p>Highcharts is very flexible so you can modify every element of the chart. There are some exiting themes so you can apply style to charts with few lines of code. </p> <h3>Usage</h3> <pre> hc_theme(...) </pre> <h3>Arguments</h3> <table summary="R argblock"> <tr valign="top"><td><code>...</code></td> <td> <p>A list of named parameters.</p> </td></tr> </table> <h3>Details</h3> <p>More examples and details in <a href="https://www.highcharts.com/docs/chart-design-and-style/themes">https://www.highcharts.com/docs/chart-design-and-style/themes</a>. </p> <h3>Examples</h3> <pre> hc <- highcharts_demo() hc thm <- hc_theme( colors = c("red", "green", "blue"), chart = list( backgroundColor = "#15C0DE" ), title = list( style = list( color = "#333333", fontFamily = "Erica One" ) ), subtitle = list( style = list( color = "#666666", fontFamily = "Shadows Into Light" ) ), legend = list( itemStyle = list( fontFamily = "Tangerine", color = "black" ), itemHoverStyle = list( color = "gray" ) ) ) hc_add_theme(hc, thm) </pre> <hr /><div style="text-align: center;">[Package <em>highcharter</em> version 0.9.4 <a href="00Index.html">Index</a>]</div> </body></html>