EVOLUTION-MANAGER
Edit File: highchart.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: Create a Highcharts chart widget</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 highchart {highcharter}"><tr><td>highchart {highcharter}</td><td style="text-align: right;">R Documentation</td></tr></table> <h2>Create a Highcharts chart widget</h2> <h3>Description</h3> <p>This function creates a Highchart chart using <span class="pkg">htmlwidgets</span>. The widget can be rendered on HTML pages generated from R Markdown, Shiny, or other applications. </p> <h3>Usage</h3> <pre> highchart( hc_opts = list(), theme = getOption("highcharter.theme"), type = "chart", width = NULL, height = NULL, elementId = NULL, google_fonts = getOption("highcharter.google_fonts") ) </pre> <h3>Arguments</h3> <table summary="R argblock"> <tr valign="top"><td><code>hc_opts</code></td> <td> <p>A <code>list</code> object containing options defined as <a href="https://api.highcharts.com/highcharts/">https://api.highcharts.com/highcharts/</a>.</p> </td></tr> <tr valign="top"><td><code>theme</code></td> <td> <p>A <code>hc_theme</code> class object-</p> </td></tr> <tr valign="top"><td><code>type</code></td> <td> <p>A character value to set if use Highchart, Highstock or Highmap. Options are <code>"chart"</code>, <code>"stock"</code> and <code>"map"</code>.</p> </td></tr> <tr valign="top"><td><code>width</code></td> <td> <p>A numeric input in pixels.</p> </td></tr> <tr valign="top"><td><code>height</code></td> <td> <p>A numeric input in pixels.</p> </td></tr> <tr valign="top"><td><code>elementId</code></td> <td> <p>Use an explicit element ID for the widget.</p> </td></tr> <tr valign="top"><td><code>google_fonts</code></td> <td> <p>A boolean value. If TRUE (default), adds a reference to the Google Fonts API to the HTML head, downloading CSS for the font families defined in the Highcharts theme from https://fonts.googleapis.com. Set to FALSE if you load your own fonts using CSS. This option as default is controlled by <code>"highcharter.google_fonts"</code> option.</p> </td></tr> </table> <hr /><div style="text-align: center;">[Package <em>highcharter</em> version 0.9.4 <a href="00Index.html">Index</a>]</div> </body></html>