EVOLUTION-MANAGER
Edit File: hc_plotOptions.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: Plotoptions 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_plotOptions {highcharter}"><tr><td>hc_plotOptions {highcharter}</td><td style="text-align: right;">R Documentation</td></tr></table> <h2>Plotoptions options for highcharter objects</h2> <h3>Description</h3> <p>The plotOptions is a wrapper object for config objects for each series type. The config objects for each series can also be overridden for each series item as given in the series array. Configuration options for the series are given in three levels. Options for all series in a chart are given in the plotOptions.series object. Then options for all series of a specific type are given in the plotOptions of that type, for example plotOptions.line. Next, options for one single series are given in the series array. </p> <h3>Usage</h3> <pre> hc_plotOptions(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/plotOptions">https://api.highcharts.com/highcharts/plotOptions</a>.</p> </td></tr> </table> <h3>Examples</h3> <pre> highchart() %>% hc_add_series( data = c(29.9, 71.5, 106.4, 129.2, 144.0, 176.0, 135.6, 148.5, 216.4, 194.1, 95.6, 54.4) ) %>% hc_plotOptions( line = list( color = "blue", marker = list( fillColor = "white", lineWidth = 2, lineColor = NULL ) ) ) </pre> <hr /><div style="text-align: center;">[Package <em>highcharter</em> version 0.9.4 <a href="00Index.html">Index</a>]</div> </body></html>