5
我在一個閃亮的應用程序中有一些googleVis圖表,但googleVis在默認情況下會縮短橫軸上的標籤。我如何防止這種行爲?下面的例子複製,我想阻止該行爲:如何防止googleVis縮短標籤?
df=data.frame(country=c(paste(rep("very very long label", 1e+2)), "GB", "BR"),
val1=c(10,13,14),
val2=c(23,12,32))
Line <- gvisLineChart(df)
plot(Line)
到文檔的鏈接是here
還有[配置選項](https://developers.google.com/chart/interactive/docs/gallery/columnchart#configuration-options)用於總體'height'和'chartArea.height' - 推薦設置這兩個,減少'chartArea.height'直到完全顯示 - 還檢查'hAxis.slantedText'&'hAxis.slantedTextAngle'以及... – WhiteHat