EVOLUTION-MANAGER
Edit File: hc_scrollbar.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: Scrollbar 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_scrollbar {highcharter}"><tr><td>hc_scrollbar {highcharter}</td><td style="text-align: right;">R Documentation</td></tr></table> <h2>Scrollbar options for highcharter objects</h2> <h3>Description</h3> <p>The scrollbar is a means of panning over the X axis of a stock chart. Scrollbars can also be applied to other types of axes. Another approach to scrollable charts is the chart.scrollablePlotArea option that is especially suitable for simpler cartesian charts on mobile. In styled mode, all the presentational options for the scrollbar are replaced by the classes .highcharts-scrollbar-thumb, .highcharts-scrollbar-arrow, .highcharts-scrollbar-button, .highcharts-scrollbar-rifles and .highcharts-scrollbar-track. </p> <h3>Usage</h3> <pre> hc_scrollbar(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/highstock/scrollbar">https://api.highcharts.com/highstock/scrollbar</a>.</p> </td></tr> </table> <h3>Examples</h3> <pre> highchart(type = "stock") %>% hc_add_series(AirPassengers) %>% hc_rangeSelector(selected = 4) %>% hc_scrollbar( barBackgroundColor = "gray", barBorderRadius = 7, barBorderWidth = 0, buttonBackgroundColor = "gray", buttonBorderWidth = 0, buttonArrowColor = "yellow", buttonBorderRadius = 7, rifleColor = "yellow", trackBackgroundColor = "white", trackBorderWidth = 1, trackBorderColor = "silver", trackBorderRadius = 7 ) </pre> <hr /><div style="text-align: center;">[Package <em>highcharter</em> version 0.9.4 <a href="00Index.html">Index</a>]</div> </body></html>