2016-10-04 4 views

答えて

0

あなたは、私はそれはかなり直感的ですが、解決策を見つけたこの

+ scale_colour_manual(values = c("purple", "green", "blue", "yellow", "magenta"), 
        guide = guide_legend(override.aes = list(
        linetype = c("solid", "solid",rep("blank", 3)), 
        shape = c(NA,NA, rep(16, 3))))) 
0

のようなものを使用します。シリーズオプションのlineWidth: 0は行を削除します。

gvisComboChart(df, 
    options = list(
     series = "[{type:'points', lineWidth: 0}]" 
    ) 
)