我试图通过 rcharts 说服 morris 显示图形标题和轴标签(x 和 y 轴的名称)。没有成功。下面的例子。
require(rCharts)
tmp <- data.frame(a=c(1, 2, 3, 4, 5),
b=c(0.1, 0.2, 0.3, 0.4, 0.5),
c=c(0.2, 0.3, 0.4, 0.5, 0.6))
morrisPlot <- mPlot(x="a", y=c("b", "c"), data=tmp,
type="Line", pointSize=4, parseTime=FALSE, hideHover="auto")
morrisPlot$set(height=500) # works
morrisPlot$set(width=500) # works
#morrisPlot$xAxis(axisLabel="a") # Error
#morrisPlot$yAxis(axisLabel="b") # Error
morrisPlot$set(title="Some Title") # doesn't show
morrisPlot
如何正确设置和显示图表标题和轴名称/标签?
由于沮丧:我对 morris 感到失望,因为我的浏览器基本上没有响应,试图绘制一个简单的多线图(有点复杂,上面的例子有更多的数据点)。是否有其他支持多线图的库的替代方案(带有示例)?我的意思是我在不同列中有数据(没有组)?