Forum Discussion
Karim_Hossam
8 years agoMicrosoft Employee
dates on Y axis
Hello, I am trying to create a tracking report, to show either ticket has been updated in the same date of creation or not, I think about Line chart , but the issue is that I don't know how to prese...
- 8 years ago
Hi Karim_Hossam,
I'm afraid it's hard to do with Power BI native visual. Maybe you can try a R visual. You can try it in this file.
1. Reformat the data.
2. Create a R visual.
library(ggplot2) dataset$Value <- as.Date(dataset$Value, "%Y-%m-%d") ggplot(data = dataset, aes(x = dataset$"Ticket ID", y = dataset$Value, group = dataset$Attribute)) + geom_line() + geom_point()
Best Regards,
Dale
v-jiascu-msft
8 years agoMicrosoft Employee
Hi Karim_Hossam,
I'm afraid it's hard to do with Power BI native visual. Maybe you can try a R visual. You can try it in this file.
1. Reformat the data.
2. Create a R visual.
library(ggplot2) dataset$Value <- as.Date(dataset$Value, "%Y-%m-%d") ggplot(data = dataset, aes(x = dataset$"Ticket ID", y = dataset$Value, group = dataset$Attribute)) + geom_line() + geom_point()
Best Regards,
Dale

