StyleCode Property: seriesMarker 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.

seriesMarker

The kind of marker the series is rendered with

Applies to Type Default
chart > scatter > series
chart > scatter > series > value
dot, cross, plus, square, diamond dot

Examples

// Example: chart > scatter > series
table T = extend.range(5)
T.X = T.N
T.Y = T.N * 2

show chart "My Chart" { 1..6, 1..6 } with
  scatter T.X
    T.Y { seriesMarker: "cross" }

// Example: chart > scatter > series > value
table T = extend.range(5)
T.X = T.N
T.Y = T.N * 2

show chart "My Chart" { 1..6, 1..6 } with
  scatter T.X
    T.Y { value { seriesMarker: "cross" } }

User Contributed Notes
0 notes + add a note