EVOLUTION-MANAGER
Edit File: hc_caption.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: Caption options for highcharter objects</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_caption {highcharter}"><tr><td>hc_caption {highcharter}</td><td style="text-align: right;">R Documentation</td></tr></table> <h2>Caption options for highcharter objects</h2> <h3>Description</h3> <p>The chart's caption, which will render below the chart and will be part of exported charts. The caption can be updated after chart initialization through the Chart.update or Chart.caption.update methods. </p> <h3>Usage</h3> <pre> hc_caption(hc, ...) </pre> <h3>Arguments</h3> <table summary="R argblock"> <tr valign="top"><td><code>hc</code></td> <td> <p>A <code>highchart</code> <code>htmlwidget</code> object.</p> </td></tr> <tr valign="top"><td><code>...</code></td> <td> <p>Arguments defined in <a href="https://api.highcharts.com/highcharts/caption">https://api.highcharts.com/highcharts/caption</a>.</p> </td></tr> </table> <h3>Examples</h3> <pre> highchart() %>% hc_title(text = "Chart with a caption") %>% hc_subtitle(text = "This is the subtitle") %>% hc_xAxis(categories = c("Apples", "Pears", "Banana", "Orange")) %>% hc_add_series( data = c(1, 4, 3, 5), type = "column", name = "Fruits" ) %>% hc_caption( text = "<b>The caption renders in the bottom, and is part of the exported chart.</b><br><em>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.</em>'" ) </pre> <hr /><div style="text-align: center;">[Package <em>highcharter</em> version 0.9.4 <a href="00Index.html">Index</a>]</div> </body></html>