cancel
Showing results for 
Search instead for 
Did you mean: 
intapiuser
Community Team Member
Community Team Member
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? 
Version history
Last update:
‎03-02-2023 09:29 AM
Updated by:
Contributors
Community Toolbox

Recommended quick links to assist you in optimizing your community experience:

Developers Group:

Product Feedback Forum:

Need additional support?:

Submit a Support Request

The Legal Stuff

Have a question about the Sisense Community?

Email [email protected]

Share this page: