Uses of Interface
org.jfree.chart3d.table.TableElement
Packages that use TableElement
Package
Description
Classes related to chart legends.
Classes and interfaces for constructing tables for display to the user.
-
Uses of TableElement in org.jfree.chart3d
Methods in org.jfree.chart3d that return TableElementModifier and TypeMethodDescriptionstatic TableElement
TitleUtils.createTitle
(String title) Creates a chart title using the default font and alignment.static TableElement
TitleUtils.createTitle
(String title, Font titleFont, String subtitle, Font subtitleFont, HAlign alignment) Creates a chart title and subtitle using the specified fonts and alignment.static TableElement
TitleUtils.createTitle
(String title, String subtitle) Creates a chart title and subtitle using default fonts and left alignment.static TableElement
TitleUtils.createTitle
(String title, String subtitle, Anchor2D anchor) Creates a chart title and subtitle (optional) using default fonts and alignment that is standard for the specified anchor point (that is, left alignment when the title is anchored left, center alignment when the title is anchored centrally, and right alignment when the title is anchored to the right).Chart3D.getTitle()
Returns the chart title.Methods in org.jfree.chart3d with parameters of type TableElementModifier and TypeMethodDescriptionvoid
Chart3D.setTitle
(TableElement title) Sets the chart title and sends aChart3DChangeEvent
to all registered listeners. -
Uses of TableElement in org.jfree.chart3d.legend
Classes in org.jfree.chart3d.legend that implement TableElementMethods in org.jfree.chart3d.legend that return TableElementModifier and TypeMethodDescriptionColorScaleLegendBuilder.createLegend
(Plot3D plot, Anchor2D anchor, Orientation orientation, ChartStyle style) Creates a new color scale legend with the specified orientation.LegendBuilder.createLegend
(Plot3D plot, Anchor2D anchor, Orientation orientation, ChartStyle style) Creates a legend for the specified plot.StandardLegendBuilder.createLegend
(Plot3D plot, Anchor2D anchor, Orientation orientation, ChartStyle style) Creates and returns a legend (instance ofTableElement
) that provides a visual key for the data series in the specified plot. -
Uses of TableElement in org.jfree.chart3d.table
Subinterfaces of TableElement in org.jfree.chart3d.tableModifier and TypeInterfaceDescriptioninterface
ATableElement
that contains other elements (provides theaddElement()
method).Classes in org.jfree.chart3d.table that implement TableElementModifier and TypeClassDescriptionclass
A table element that displays a list of sub-elements in a flow layout.class
GridElement<R extends Comparable<R>,
C extends Comparable<C>> A table element that contains a grid of elements.class
A table element that displays a shape.class
A table element consisting of some text that will be drawn on one line.class
A table element that displays a list of sub-elements in a vertical flow layout.Methods in org.jfree.chart3d.table that return TableElementMethods in org.jfree.chart3d.table that return types with arguments of type TableElementModifier and TypeMethodDescriptionFlowElement.getElements()
Returns a (new) list containing the elements in this flow layout.VerticalFlowElement.getElements()
Returns a (new) list containing the elements in this flow layout.Methods in org.jfree.chart3d.table with parameters of type TableElementModifier and TypeMethodDescriptionvoid
ContainerElement.addElement
(TableElement element) Adds a sub-element to the container element.void
FlowElement.addElement
(TableElement element) Adds a sub-element to the list.void
VerticalFlowElement.addElement
(TableElement element) Adds a sub-element to the list.void
TableElementOnDraw.afterDraw
(TableElement element, Graphics2D g2, Rectangle2D bounds) A callback method that is called after an element is drawn.void
TableElementOnDraw.beforeDraw
(TableElement element, Graphics2D g2, Rectangle2D bounds) A callback method that is called before an element is drawn.void
GridElement.setElement
(TableElement element, R rowKey, C columnKey) Adds (or updates) a cell in the grid.void
TableElementStyler.visit
(TableElement element) void
TableElementVisitor.visit
(TableElement element) Performs the visitor's operation on the table element.Constructors in org.jfree.chart3d.table with parameters of type TableElementModifierConstructorDescriptionElementInfo
(TableElement element, Dimension2D dimension) Creates a new instance.