cancel
Showing results for 
Search instead for 
Did you mean: 

Analytics Application - R visualization Google Gauge chart

former_member743766
Discoverer

Hi,

Is there a way to remove or hide the disclaimer footer?

Thanks for any ideas.

Best regards,

Martin Zluky

Accepted Solutions (0)

Answers (2)

Answers (2)

jove_shi
Employee
Employee

Hi Martin,

The foot is rendered by googleVis library which is not owned by SAC, maybe you can check whether its API supports hiding the foot.

However, in Analytical Application Designer, you can overlay some widget (for example, Shape) to cover the foot area, or use Panel to wrap the R Widget with proper height and non-scrollbar option to hide the foot.

Thanks,

Jove

leec
Explorer
0 Kudos

Martin,

I had the same issue (with a pie chart) and the following works for me:

pc=gvisPieChart(df,options=list(...))
pc$html$footer <- NULL
pc$html$jsFooter <- NULL
pc$html$caption <- NULL
plot(pc)

Kind regards,

Lieselot