StyleCode Property: chartBlockKind v2

🚧 Work in progress — This documents the redesigned dashboard layout system, which is still under active development and subject to change. It is not compatible with the older v1 dashboard tile system.

chartBlockKind

Discriminates the stylecode scope for that block.

Applies to Type Default
chart > plotxy
chart > plot
chart > haxis
chart > scatter
scatter, plotxy, haxis, plot scatter
// Example: chart > haxis
table T = extend.range(5)
T.X = T.N
T.Y = T.N * 2

show chart "My Chart" { 1..6, 1..6 } with
  haxis by T.X { chartBlockKind: "plotxy" }
  plot by T.X
    same(T.Y)

User Contributed Notes
0 notes + add a note