ax_nodata | R Documentation |
Configuration for charts with no data
ax_nodata(
ax,
text = "No data",
align = "center",
verticalAlign = "middle",
color = NULL,
fontSize = NULL,
fontFamily = NULL,
offsetX = NULL,
offsetY = NULL
)
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. |
An apexchart()
htmlwidget
object.
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"
)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.