更改字体大小Radar Plot

时间:2018-11-08 17:13:40

标签: r plot plotly radar-chart

有人知道如何更改字体大小吗?我附上了一个示例代码示例。

library(plotly)

p <- plot_ly(
type = 'scatterpolar',
r = c(39, 28, 8, 7, 28, 39),
theta = c('A','B','C', 'D', 'E', 'A'),
fill = 'toself'
) %>%
layout(
polar = list(
  radialaxis = list(
    visible = T,
    range = c(0,50)
  )
),
showlegend = F
)

我尝试过类似的操作:titlefont = list(size = 25),tickfont = list(size = 25) ra

1 个答案:

答案 0 :(得分:1)

使用

if False: pass

在布局中完成工作:

enter image description here