class %ZEN.Report.Display.Chart.lineChart
extends chart
Renders a line chart.
parameter DEFAULTPLOTTOEDGE = 1;
Default value for plotToEdge property.
property chartFilled
as %ZEN.Datatype.boolean [ InitialExpression = 0 ];
Specifies whether the area under the line is filled (as
in an area chart) or not filled (as in a line chart).
property chartPivot
as %ZEN.Datatype.boolean [ InitialExpression = 0 ];
If true, pivot this chart: display categories vertically
and values horizontally.
property chartStacked
as %ZEN.Datatype.boolean [ InitialExpression = 0 ];
If true, this is a stacked line chart. That is,
data series are plotted above one another.
Note that negative values are ignored in stacked charts.
method getXAxisType()
as %String
Return the type of x axis (category or value) used by
this chart.
method getYAxisType()
as %String
Return the type of y axis (category or value) used by
this chart.
method renderMarkers(ByRef context As %String, ByRef XSL As %GlobalCharacterStream, ByRef delay As %GlobalCharacterStream, pDataFields As %String, pI As %Integer)
method renderSeries(ByRef context As %String, ByRef XSL As %GlobalCharacterStream, ByRef delay As %GlobalCharacterStream)
as %Status
Draw data series for this chart.
This is implemented by subclasses.
group is the SVG container for the chart components.
method renderSeriesLine(ByRef context As %String, ByRef XSL As %GlobalCharacterStream, ByRef delay As %GlobalCharacterStream, pDataFields As %String, i As %Integer)
as %Status