Регулировка ширины легенды для непрерывной переменной

У меня есть сценарий ниже, чтобы проиллюстрировать мой вопрос:

temp.df <- data.frame(x=1:100,y=1:100,z=1:100,stringsAsFactors=FALSE)
chart <- ggplot(data=temp.df,aes(x=x,y=y))
chart <- chart + geom_line(aes(colour=z))
chart <- chart + scale_colour_continuous(low="blue",high="red")
chart <- chart + theme(legend.position="bottom")
# so far so good, but I think the legend positioned at bottom with such a small size is a waste of space, so I want to "widen" it using the line below...
chart <- chart + guides(colour=guide_legend(keywidth=5,label.position="bottom"))
# oops, it changed to legend for categorical variable

Как я могу расширить легенду "непрерывной переменной", расположенную внизу?

Ответы на вопрос(2)

Ваш ответ на вопрос