我正在寻找一种方法,使用Vegas将绘图渲染到本地文件系统上的.png文件。像
这样的东西val plot = Vegas("Country Pop")
.withData(
Seq(
Map("country" -> "USA", "population" -> 314),
Map("country" -> "UK", "population" -> 64),
Map("country" -> "DK", "population" -> 80)
)
)
.encodeX("country", Nom)
.encodeY("population", Quant)
.mark(Bar)
plot.missingMethodForSavingAFigure("path/to/dest.png")
不幸的是,似乎不存在我所知道的.saveFigure方法。有没有人有任何建议的替代方案?