在 rCharts 中隐藏网格线 - nPlot
Hiding gridlines in rCharts - nPlot
我目前正在尝试使用 R 包 rCharts 创建一个没有 x 和 y 轴网格线的散点图。不幸的是,我对 javascript 没有太多经验。我尝试使用后脚本 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
尝试:
a1$setTemplate(
afterScript = "<style>
.tick line {
opacity: 0;
}
</style>")
我目前正在尝试使用 R 包 rCharts 创建一个没有 x 和 y 轴网格线的散点图。不幸的是,我对 javascript 没有太多经验。我尝试使用后脚本 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
尝试:
a1$setTemplate(
afterScript = "<style>
.tick line {
opacity: 0;
}
</style>")