Class BoxplotChart
Object
ObjectIdentity
AbstractBuilder
- All Implemented Interfaces:
CanDoComparison,CanDrillDown,CanZoom,Portlet,Portlet
public class BoxplotChart
extends AbstractChartBuilder<BoxplotChart>
implements CanDoComparison, CanDrillDown, CanZoom
Builder for a Box Plot Chart, obtained via
ChartBuilder.newBoxplot() rather than instantiated
directly. See that factory method for the chart's overall shape (a plain category X axis and a Box Plot
expression Y axis supplying each category's statistical distribution) and a Groovy example.
Methods of this class are mostly self-explanatory or equivalent to the Highcharts methods, described at HighCharts.Chart.
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeClassDescriptionstatic classA further measure on aBoxplotChart.BoxplotSeriesbeyond its primary Y axis Box Plot expression, obtained fromBoxplotChart.BoxplotSeries.addAdditionalMeasure()rather than instantiated directly.static classThe Options for aBoxplotChart, obtained fromgetOptions()rather than instantiated directly.static classA single series of aBoxplotChart, obtained fromaddSeries()rather than instantiated directly. -
Field Summary
Fields inherited from class AbstractChartBuilder
dragDropEnabled, layout, messages, queryBuilderState, resizingEnabledFields inherited from class AbstractBuilder
METHOD_BUILDFields inherited from class ObjectIdentity
classId, idGenerator, instanceId, invocations, m, NONE, parentObjectIdentity -
Constructor Summary
ConstructorsConstructorDescriptionBoxplotChart(IdGenerator idGenerator, Invocations<MethodInvocation> invocations) -
Method Summary
Modifier and TypeMethodDescriptionAdds a horizontal, vertical, or stepped reference line to this chart, independent of its data series, for example a fixed target or threshold value.Adds a new series to this chart.ChartBuilderResultbuild()Finishes this chart's definition.Returns this chart's Options builder.Methods inherited from class AbstractChartBuilder
addInvocation, build, fromQueryBuilderState, getDictionary, getThis, invokeAddSeries, invokeGetOptions, invokeGetSeries, layout, onCellClick, onRowClick, value, withDragDrop, withError, withHeight, withHeight, withInfo, withLabelOverride, withLayout, withLayout, withLayout, withResizing, withTab, withWarning, withWidth, withWidthMethods inherited from class ObjectIdentity
addInvocation, addInvocationInternal, getClassId
-
Constructor Details
-
BoxplotChart
public BoxplotChart(IdGenerator idGenerator, Invocations<MethodInvocation> invocations)
-
-
Method Details
-
addSeries
Adds a new series to this chart.- Returns:
- a new
BoxplotChart.BoxplotSeriesfor this chart. Nevernull.
-
getOptions
Description copied from class:AbstractChartBuilderReturns this chart's Options builder. Each concrete chart type declares its own Options subclass (for exampleScatterChart.ScatterOptions,BarLineChart.BarLineOptions) exposing the settings that apply to that chart type, such as title, subtitle, and axis label and bound overrides; the exact set of available options differs per chart type, which is why this method is declared abstract here rather than implemented once for every chart.- Specified by:
getOptionsin classAbstractChartBuilder<BoxplotChart>- Returns:
- this chart's type-specific
AbstractChartOptionsinstance. Nevernull.
-
addAuxLine
Adds a horizontal, vertical, or stepped reference line to this chart, independent of its data series, for example a fixed target or threshold value. CallAuxLine.withLine(),AuxLine.withSteppedLine(), orAuxLine.withVerticalLine()on the returned builder to choose the line's shape.- Overrides:
addAuxLinein classAbstractChartBuilder<BoxplotChart>- Returns:
- a new
AuxLinebuilder for this chart. Nevernull.
-
build
public ChartBuilderResult build()Finishes this chart's definition. The returned object is what Dashboard portlets, quote headers, and other areas render.- Specified by:
buildin classAbstractBuilder- Returns:
- the finished chart definition. Never
null.
-