I would like to be able to add the orange color around the text. In PowerPoint, I can achieve this by formatting the data label fill color. Below is the code in R I'm using to set the shading color around the text but I don't know where I can set the color in the chart_data_labels function in the mschart R package. Thank you in advance.
fp_text_settings <- list(`C` = fp_text(color = "white",shading.color = "#767171",font.size = 10, font.family = "Century Gothic")
You would set this in the chart theme, not in
chart_data_labels. The manner in which you document these formschartis extremely similar to how it comes together forggplot2.For example, I could identify the styles in the theme as I did in this example.