ax_nodata {apexcharter} | R Documentation |
Configuration for charts with no data
Description
Configuration for charts with no data
Usage
ax_nodata(
ax,
text = "No data",
align = "center",
verticalAlign = "middle",
color = NULL,
fontSize = NULL,
fontFamily = NULL,
offsetX = NULL,
offsetY = NULL
)
Arguments
ax |
An |
text |
The text to display when no-data is available. |
align |
Horizontal alignment: |
verticalAlign |
Vertical alignment: |
color |
ForeColor of the text. |
fontSize |
FontSize of the text. |
fontFamily |
FontFamily of the text. |
offsetX , offsetY |
Text offset. |
Value
An apexchart()
htmlwidget
object.
Examples
empty <- data.frame(
var1 = character(0),
var2 = numeric(0)
)
apex(empty, aes(var1, var2), "column") %>%
ax_nodata(
text = "Sorry no data to visualize",
fontSize = "30px"
)
[Package apexcharter version 0.4.3 Index]