EVOLUTION-MANAGER
Edit File: hc_zAxis.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: Zaxis 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_zAxis {highcharter}"><tr><td>hc_zAxis {highcharter}</td><td style="text-align: right;">R Documentation</td></tr></table> <h2>Zaxis options for highcharter objects</h2> <h3>Description</h3> <p>The Z axis or depth axis for 3D plots. See the Axis class for programmatic access to the axis. </p> <h3>Usage</h3> <pre> hc_zAxis(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/zAxis">https://api.highcharts.com/highcharts/zAxis</a>.</p> </td></tr> </table> <h3>Examples</h3> <pre> df <- data.frame( x = sample(1:5), y = sample(1:5), z = sample(1:5) ) # Note the 3d requiere highchart2() due have the 3d module highchart2() %>% hc_add_series(data = df, "scatter3d", hcaes(x = x, y = y, z = z)) %>% hc_chart( type = "scatter3d", options3d = list( enabled = TRUE, alpha = 20, beta = 30, depth = 200, viewDistance = 5, frame = list( bottom = list( size = 1, color = "rgba(0,0,0,0.05)" ) ) ) ) %>% hc_zAxis( title = list(text = "Z axis is here"), startOnTick = FALSE, tickInterval = 2, tickLength = 4, tickWidth = 1, gridLineColor = "red", gridLineDashStyle = "dot" ) </pre> <hr /><div style="text-align: center;">[Package <em>highcharter</em> version 0.9.4 <a href="00Index.html">Index</a>]</div> </body></html>