列重叠xAxis标签

时间:2015-06-26 11:42:04

标签: r highcharts rcharts

我在降价文档中制作了一个带有R / rCharts / highcharts的图表。我生成一个包含(除了其他命令之外)此命令的绘图,这会导致rmarkdown中出现问题:

plot$yAxis(labels = list(formatter = "#! function() {return (this.value) + '%';} !#"),

                        # The maximum value should always be 100
                        max = 100,

                        # Subtract 5 percent from the minimum value as 
                        # minimum value for the y Axis.
                        min = max(minimum - 5, 0))

当我在rStudio viewer中查看它时看起来很好:

enter image description here

然而,当我在rmarkdown中使用相同的代码时,列似乎从错误的位置开始:

enter image description here

这是由yAxis最小值的硬设置引起的。在markdown中创建错误的代码与上面完全相同。只是为了绘图,我使用这个命令:

plot$show('iframesrc', cdn = TRUE)

列起始位置似乎没有更新.. 你知道导致错误的原因吗?

0 个答案:

没有答案