This is a Shape primitive. Defines an instance of an Ellipse shape for use in the Shapes or ContourShapesprimitives value.
Usage:
//within a map function's return object. This will draw a red ellipse centered at each rendered//bar's value and index.... { graphics: { items: [ {tag:'Shapes',key:'ellipses',//the ellipse is a primitveprimitives: [ {tag:'Ellipse',position: {x:du(d.index()),y:du(d.value()), }size: {height:px(18),width:px(24) } } ],fillStyle: {color:'#f00' } } ] } }...
This is a
Shape
primitive. Defines an instance of anEllipse
shape for use in theShapes
orContourShapes
primitives
value. Usage: