Package org.jfree.chart
Class ChartHints
java.lang.Object
org.jfree.chart.ChartHints
Special rendering hints that can be used internally by JFreeChart or by
specialised implementations of the
Graphics2D
API. For example,
JFreeSVG's SVGGraphics2D
class, will use the
KEY_BEGIN_ELEMENT
and KEY_END_ELEMENT
hints to drive the
output content.-
Nested Class Summary
Modifier and TypeClassDescriptionstatic class
A key for rendering hints that can be used with JFreeChart (in addition to the regular Java2D rendering hints). -
Field Summary
Modifier and TypeFieldDescriptionstatic final ChartHints.Key
The key for a hint to signal the beginning of an element.static final ChartHints.Key
The key for a hint that ends an element. -
Method Summary
-
Field Details
-
KEY_BEGIN_ELEMENT
The key for a hint to signal the beginning of an element. The value should be a string containing the element id or, alternatively, a Map containing the 'id' (String) and 'ref' (String in JSON format). -
KEY_END_ELEMENT
The key for a hint that ends an element.
-