public class Frame extends Configurable<Frame>
Options3D.setFrame(Frame) method.
Sample usage:
chart.setOptions3d(
new Options3d()
.setFrame(
new Frame()
)
);
| Modifier and Type | Class and Description |
|---|---|
static class |
Frame.FramePanel
Inner class to support setting 'frame' attributes in a 3d chart.
|
| Constructor and Description |
|---|
Frame() |
| Modifier and Type | Method and Description |
|---|---|
Frame |
setBack(Frame.FramePanel backFramePanel)
Convenience method for setting the 'back' attribute of a 3d chart's frame.
|
Frame |
setBottom(Frame.FramePanel bottomFramePanel)
Convenience method for setting the 'bottom' attribute of a 3d chart's frame.
|
Frame |
setSide(Frame.FramePanel sideFramePanel)
Convenience method for setting the 'side' attribute of a 3d chart's frame Equivalent to:
|
getOptions, setOptionpublic Frame setBack(Frame.FramePanel backFramePanel)
frame.setOption("back", new FramePanel());
backFramePanel - an instance of Frame.FramePanel
Defines the back panel of the frame around 3D charts.Frame instance for convenient method chaining.public Frame setBottom(Frame.FramePanel bottomFramePanel)
frame.setOption("bottom", new FramePanel());
bottomFramePanel - an instance of Frame.FramePanel
The bottom of the frame around a 3D chart.Frame instance for convenient method chaining.public Frame setSide(Frame.FramePanel sideFramePanel)
frame.setOption("side", new FramePanel());
sideFramePanel - an instance of Frame.FramePanel
The side for the frame around a 3D chart.Frame instance for convenient method chaining.Copyright © 2015. All Rights Reserved.