Navigation :
StyleCode Property: radius v1
radius
Specify the radius multiplier of points composing the scatter plot.
Examples
// 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 { radius: 2 } }