Skip to main content

%ZEN.SVGComponent.lineChart

class %ZEN.SVGComponent.lineChart extends %ZEN.SVGComponent.chart

This is an SVG chart component that displays a line chart.
This chart displays one or more data series as a set of lines.
If there are multiple data series, the lines are either superimposed or or stacked atop one another, as specified by the chartStacked property.
You can use the chartFilled property to specify that the area under the lines should be filled, turning this into an area chart.
You can view pivot the chart using the chartPivot property.

Property Inventory

Method Inventory

Parameters

parameter DEFAULTPLOTTOEDGE = 1;
Default value for plotToEdge property.

Properties

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 methods: chartFilledDisplayToLogical(), chartFilledGet(), chartFilledIsValid(), chartFilledLogicalToDisplay(), chartFilledLogicalToOdbc(), chartFilledLogicalToXSD(), chartFilledNormalize(), chartFilledSet(), chartFilledXSDToLogical()
property chartPivot as %ZEN.Datatype.boolean [ InitialExpression = 0 ];
If true, pivot this chart: display categories vertically and values horizontally.
Property methods: chartPivotDisplayToLogical(), chartPivotGet(), chartPivotIsValid(), chartPivotLogicalToDisplay(), chartPivotLogicalToOdbc(), chartPivotLogicalToXSD(), chartPivotNormalize(), chartPivotSet(), chartPivotXSDToLogical()
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.
Property methods: chartStackedDisplayToLogical(), chartStackedGet(), chartStackedIsValid(), chartStackedLogicalToDisplay(), chartStackedLogicalToOdbc(), chartStackedLogicalToXSD(), chartStackedNormalize(), chartStackedSet(), chartStackedXSDToLogical()

Methods

clientmethod getChartElementStyle(series, item) [ Language = javascript ]
Return default style for a line element.
clientmethod getXAxisType() [ Language = javascript ]
Return the type of x axis (category or value) used by this chart.
clientmethod getYAxisType() [ Language = javascript ]
Return the type of y axis (category or value) used by this chart.
clientmethod hasMultiples() [ Language = javascript ]
Indicates that this chart supports "show multiples" mode.
clientmethod isTimeBased() [ Language = javascript ]
Test if a time-based x axis should be used. This is overridden in subclasses.
clientmethod renderSeries(group) [ Language = javascript ]
Draw data series for this chart. group is the SVG container for the chart components.
clientmethod setProperty(property, value, value2) [ Language = javascript ]
Set the value of a named property.
clientmethod useSumForRange() [ Language = javascript ]
This method returns true if data series should be summed when calculating data range for the chart.

Inherited Members

Inherited Properties

Inherited Methods

FeedbackOpens in a new tab