Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

The Power BI Data Visualization World Championships is back! It's time to submit your entry. Live now!

Reply
ozk_resg_prm
Frequent Visitor

Difference in R Visuals for PBI-Desktop and PBI-Service

Hello,

 

Does anyone know why the legend is not showing for my R Visual (ggplot2) in PBI-Service? Thanks.

 

library(ggplot2)
library(scales)
dd2 <- as.data.frame(unique(dataset$`Projected Date Text`))
colnames(dd2) <- c("ProjectedDate")
for(i in 1:length(dd2$ProjectedDate)){
       dd2$Actual[i] <- dataset$Sum5[as.character(dataset$`Projected Date Text`)== as.character(dataset$`As of Text`) & as.character(dd2$ProjectedDate[i]) == as.character(dataset$`Projected Date Text`)]
       dd2$Max[i] <- max(dataset$`Sum_Projected Amount`[as.character(dataset$`Projected Date Text`) == as.character(dd2$ProjectedDate[i])])
       dd2$Min[i] <- min(dataset$`Sum_Projected Amount`[as.character(dataset$`Projected Date Text`) == as.character(dd2$ProjectedDate[i])])}
dataset <- dd2
dataset$ProjectedDate <- as.Date(dataset$ProjectedDate, "%m/%d/%Y")
dataset <- dataset[order(dataset$ProjectedDate),]
ggplot(dataset, aes(x=ProjectedDate)) +
       geom_point(aes(y=Actual), color = "red", size=2.5) +
       geom_line(aes(y=Actual, color="Actual"), size=1.5) +
       geom_line(aes(y=Min, color = "Min Projection"), size=1.5) +
       geom_line(aes(y=Max, color = "Max Projection"), size=1.5) +
       geom_ribbon(aes(ymin=Min, ymax=Max), fill = "orange", alpha=0.4) +
       scale_y_continuous(name = "", labels = dollar_format()) +
       labs(x="Date") + 
       scale_color_manual(name=" ", values=c("Actual"= "red", "Min Projection"="blue", "Max Projection"="green")) +
       theme_bw(base_size = 16)

PBI-Desktop:

Capture.PNG

PBI-Service:

Capture2.PNG

3 REPLIES 3
v-yulgu-msft
Microsoft Employee
Microsoft Employee

Hi @ozk_resg_prm,

 

Would you please change to a different web browser for a test?

 

Regards,

Yuliana Gu

Community Support Team _ Yuliana Gu
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

Hi @v-yulgu-msft,

 

Chrome and IE both swhow the same results.

ozk_resg_prm
Frequent Visitor

Has anyone experienced this before?

Helpful resources

Announcements
Power BI DataViz World Championships

Power BI Dataviz World Championships

The Power BI Data Visualization World Championships is back! It's time to submit your entry.

January Power BI Update Carousel

Power BI Monthly Update - January 2026

Check out the January 2026 Power BI update to learn about new features.

FabCon Atlanta 2026 carousel

FabCon Atlanta 2026

Join us at FabCon Atlanta, March 16-20, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.