Class Frame
- java.lang.Object
-
- com.vaadin.flow.component.charts.model.AbstractConfigurationObject
-
- com.vaadin.flow.component.charts.model.Frame
-
- All Implemented Interfaces:
Serializable
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:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description Frame()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description BackgetBack()BottomgetBottom()SidegetSide()TopgetTop()voidsetBack(Back back)Defines the back panel of the frame around 3D charts.voidsetBottom(Bottom bottom)The bottom of the frame around a 3D chart.voidsetSide(Side side)Note: As of v5.0.12,frame.leftorframe.rightshould be used instead.voidsetTop(Top top)The top of the frame around a 3D chart.
-
-
-
Method Detail
-
getBack
public Back getBack()
- See Also:
setBack(Back)
-
setBack
public void setBack(Back back)
Defines the back panel of the frame around 3D charts.
-
getBottom
public Bottom getBottom()
- See Also:
setBottom(Bottom)
-
setBottom
public void setBottom(Bottom bottom)
The bottom of the frame around a 3D chart.
-
getSide
public Side getSide()
- See Also:
setSide(Side)
-
setSide
public void setSide(Side side)
Note: As of v5.0.12,
frame.leftorframe.rightshould be used instead.The side for the frame around a 3D chart.
-
getTop
public Top getTop()
- See Also:
setTop(Top)
-
setTop
public void setTop(Top top)
The top of the frame around a 3D chart.
-
-