class %DeepSee.Component.dataSeriesDefinition
extends %ZEN.Component.object
Defines a chart data series definition within a Dashboard widget definition.
This is used by the Widget editor. It is not the saved state of the data series.
parameter NAMESPACE = "http://www.intersystems.com/deepsee";
This is the XML namespace used for library components.
property color
as %String(MAXLEN=255,XMLPROJECTION="attribute");
Color for this series.
property hasLegend
as %Boolean(XMLPROJECTION="attribute") [ InitialExpression = 1 ];
If false, do not include this series in the chart legend.
property markerShape
as %String(MAXLEN=255,XMLPROJECTION="attribute");
Marker for this series ("circle", etc).
property type
as %String(MAXLEN=255,XMLPROJECTION="attribute");
How to display this series ("area","bar","line").
property yAxisIndex
as %Integer(MINVAL=0,XMLPROJECTION="attribute") [ InitialExpression = 0 ];
yAxis (0-based) to use for this series.