Using Ggplot2 For Charts With A Similar Look To Periscope Data's Default Charting
If you have a mix of visualizations using Sisense for Cloud Data Teams' default charting options and R/Python charts, ensuring a uniform look gives a cohesive flow to the entire dashboard.
By playing around with ggplot2's customization options, we can get closer to the built-in charting look:
output <- output +
scale_x_continuous(expand = c(0, 0)) +
scale_y_continuous(expand = c(0, 0))
output <- output +
theme(panel.background = element_rect(fill = "transparent"),
panel.grid.major.x = element_blank(),
panel.grid.major.y =element_line(size=.15, color="gray15"),
axis.text=element_text(family='NimbusSan',size=12),
axis.title.x=element_text(family='NimbusSan',size=14),
axis.title.y=element_text(family='NimbusSan',size=14))
Here's the result:

Any other customizations you would add on here?
Updated 03-02-2023
intapiuser
Admin
Joined December 15, 2022