PlotNode

data class PlotNode(val plot: PlotIfc, val caption: String? = null) : ReportNode(source)

A plot node wrapping any PlotIfc implementation.

Renderers decide how to handle the plot based on their output format:

Parameters

plot

the plot to render

caption

optional caption displayed below the plot

Constructors

Link copied to clipboard
constructor(plot: PlotIfc, caption: String? = null)

Properties

Link copied to clipboard
Link copied to clipboard

Functions

Link copied to clipboard
open override fun accept(visitor: ReportVisitor)

Double-dispatch entry point — each node calls the appropriate visitor method.