We use cookies to serve our customers and website visitors in the best possible way. Cookies are used for the proper functioning of the website and for improving the user experience, monitoring visitor traffic and marketing purposes. By continuing to browse the site, you agree to our use of cookies. You can read more about cookies here.
com.vaadin.flow.component.charts.model.
Class Frame
- java.lang.Object
-
- com.vaadin.flow.component.charts.model.AbstractConfigurationObject
-
- com.vaadin.flow.component.charts.model.Frame
-
All Implemented Interfaces:
public class Frame extends AbstractConfigurationObject
Provides the option to draw a frame around the charts by defining a bottom, front and back panel.
See Also:
-
-
Constructor Summary
Constructors Constructor and Description Frame()
-
Method Summary
All Methods Modifier and Type Method and Description Back
getBack()
Bottom
getBottom()
Side
getSide()
Top
getTop()
void
setBack(Back back)
Defines the back panel of the frame around 3D charts.
void
setBottom(Bottom bottom)
The bottom of the frame around a 3D chart.
void
setSide(Side side)
Note: As of v5.0.12,
frame.left
orframe.right
should be used instead.void
setTop(Top top)
The top of the frame around a 3D chart.
-
-
-
Method Detail
-
getBack
public Back getBack()
See Also:
-
setBack
public void setBack(Back back)
Defines the back panel of the frame around 3D charts.
-
getBottom
public Bottom getBottom()
See Also:
-
setBottom
public void setBottom(Bottom bottom)
The bottom of the frame around a 3D chart.
-
getSide
public Side getSide()
See Also:
-
setSide
public void setSide(Side side)
Note: As of v5.0.12,
frame.left
orframe.right
should be used instead.The side for the frame around a 3D chart.
-
getTop
public Top getTop()
See Also:
-
setTop
public void setTop(Top top)
The top of the frame around a 3D chart.
-
-