This is a Shape primitive. Defines an instance of a Circle shape for use in the Shapes or ContourShapesprimitives value.
Usage:
//within a map function's return object. This will draw a red circle centered at each rendered//bar's value and index.... { graphics: { items: [ {tag:"Shapes",key:'circles',//the circle is a primitveprimitives: [ {tag:'Circle',center: {x:d.index(),y:d.value(), }radius: 10 } ],fillStyle: {color:'#f00' } } ] } }...
This is a
Shape
primitive. Defines an instance of aCircle
shape for use in theShapes
orContourShapes
primitives
value. Usage: