chrt.Chrt()
.size(chrtWidth, chrtHeight)
.data([5,1,2,5,6,2,4,6])
.add(chrt.xAxis(5).hideAxis())
.add(chrt.yAxis(5).hideAxis())
.add(
chrt.horizontalGrid(5)
.dotted()
.width(2)
.color(colors.yellow)
)
.add(
chrt.verticalGrid(5)
.dashed()
.width(2)
.color(colors.red)
)
.node()