Interface AxisTickLabelOptions.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<AxisTickLabelOptions.Builder,AxisTickLabelOptions>,SdkBuilder<AxisTickLabelOptions.Builder,AxisTickLabelOptions>,SdkPojo
- Enclosing class:
- AxisTickLabelOptions
public static interface AxisTickLabelOptions.Builder extends SdkPojo, CopyableBuilder<AxisTickLabelOptions.Builder,AxisTickLabelOptions>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description default AxisTickLabelOptions.BuilderlabelOptions(Consumer<LabelOptions.Builder> labelOptions)Determines whether or not the axis ticks are visible.AxisTickLabelOptions.BuilderlabelOptions(LabelOptions labelOptions)Determines whether or not the axis ticks are visible.AxisTickLabelOptions.BuilderrotationAngle(Double rotationAngle)The rotation angle of the axis tick labels.-
Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
-
Methods inherited from interface software.amazon.awssdk.utils.builder.SdkBuilder
applyMutation, build
-
Methods inherited from interface software.amazon.awssdk.core.SdkPojo
equalsBySdkFields, sdkFields
-
-
-
-
Method Detail
-
labelOptions
AxisTickLabelOptions.Builder labelOptions(LabelOptions labelOptions)
Determines whether or not the axis ticks are visible.
- Parameters:
labelOptions- Determines whether or not the axis ticks are visible.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
labelOptions
default AxisTickLabelOptions.Builder labelOptions(Consumer<LabelOptions.Builder> labelOptions)
Determines whether or not the axis ticks are visible.
This is a convenience method that creates an instance of theLabelOptions.Builderavoiding the need to create one manually viaLabelOptions.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed tolabelOptions(LabelOptions).- Parameters:
labelOptions- a consumer that will call methods onLabelOptions.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
labelOptions(LabelOptions)
-
rotationAngle
AxisTickLabelOptions.Builder rotationAngle(Double rotationAngle)
The rotation angle of the axis tick labels.
- Parameters:
rotationAngle- The rotation angle of the axis tick labels.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-