Data labels show details about data series. This function indicate that
data labels should be displayed. See chart_labels_text()
for modifying
text settings associated with labels.
chart_data_labels(
x,
num_fmt = "General",
position = "ctr",
show_legend_key = FALSE,
show_val = FALSE,
show_cat_name = FALSE,
show_serie_name = FALSE,
show_percent = FALSE,
separator = ", "
)
an ms_chart
object.
character(1)
: number formatting specifies number format properties which
indicate how to format and render the numeric values. It can be "General", "0.00", "#,##0",
"#,##0.00", "mm-dd-yy", "m/d/yy h:mm", etc.
character(1)
: it specifies the position of the data label.
It should be one of 'b', 'ctr', 'inBase', 'inEnd', 'l',
'outEnd', 'r', 't'.
When grouping is 'clustered', it should be one of 'ctr','inBase','inEnd','outEnd'.
When grouping is 'stacked', it should be one of 'ctr','inBase','inEnd'.
When grouping is 'standard', it should be one of 'b','ctr','l','r','t'.
show legend key if TRUE.
show values if TRUE.
show categories if TRUE.
show names of series if TRUE.
show percentages if TRUE.
separator for displayed labels.