在rCharts中隐藏网格线 - nPlot

时间:2015-12-15 21:47:18

标签: r rcharts

我目前正在尝试使用R包rCharts创建散点图,而不使用x和y轴网格线。不幸的是,我没有很多javascript经验。我试图使用after脚本setTemplate参数。

library(rCharts)

a <- rep(1:10,10)
b <- rep(unique(morse_code$month_x),9)
b <- b[-(1:8)]
c <- rep(1:10,10)

abc <- data.frame(a,b,c)

a1 <- nPlot(a ~ b, data = abc, type = 'scatterChart')
a1$xAxis(axisLabel = 'Year Month')
a1$yAxis(axisLabel = 'Volume')

a1$setTemplate(
  afterScript = "   <script>
ySlope.gridlineShapes.remove();
   <script>")

a1

1 个答案:

答案 0 :(得分:0)

尝试:

a1$setTemplate(
  afterScript = "<style>
.tick line {
  opacity: 0;
}
</style>")