Navigation :
StyleCode Property: seriesMarker v1
seriesMarker
The kind of marker the series is rendered with
Examples
// Example: chart > scatter > series
table T = extend.range(5)
T.X = T.N
T.Y = T.N * 2
show chart "My Chart" a1f4 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" a1f4 with
scatter T.X
T.Y { value { seriesMarker: "cross" } }