Navigation :
StyleCode Property: chartBlockKind v1
chartBlockKind
Discriminates the stylecode scope for that block.
// Example: chart > haxis
table T = extend.range(5)
T.X = T.N
T.Y = T.N * 2
show chart "My Chart" a1f4 with
haxis by T.X { chartBlockKind: "plotxy" }
plot by T.X
same(T.Y)