hcpxy_add_point {highcharter} | R Documentation |
Add point to a series of a higchartProxy object
Description
Add point to a series of a higchartProxy object
Usage
hcpxy_add_point(
proxy,
id = NULL,
point,
redraw = TRUE,
shift = FALSE,
animation = TRUE
)
Arguments
proxy |
A |
id |
A character vector indicating the |
point |
The point options. If options is a single number, a point with that y value is appended to the series. If it is an list, it will be interpreted as x and y values respectively. If it is an object, advanced options as outlined under series.data are applied |
redraw |
Whether to redraw the chart after the point is added. When adding more than one point, it is highly recommended that the redraw option be set to false, and instead Highcharts.Chart#redraw is explicitly called after the adding of points is finished. Otherwise, the chart will redraw after adding each point. |
shift |
If |
animation |
Whether to apply animation, and optionally animation configuration. |