Interface ChartAxisLabelOptions.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<ChartAxisLabelOptions.Builder,ChartAxisLabelOptions>,SdkBuilder<ChartAxisLabelOptions.Builder,ChartAxisLabelOptions>,SdkPojo
- Enclosing class:
- ChartAxisLabelOptions
@Mutable @NotThreadSafe public static interface ChartAxisLabelOptions.Builder extends SdkPojo, CopyableBuilder<ChartAxisLabelOptions.Builder,ChartAxisLabelOptions>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ChartAxisLabelOptions.BuilderaxisLabelOptions(Collection<AxisLabelOptions> axisLabelOptions)The label options for a chart axis.ChartAxisLabelOptions.BuilderaxisLabelOptions(Consumer<AxisLabelOptions.Builder>... axisLabelOptions)The label options for a chart axis.ChartAxisLabelOptions.BuilderaxisLabelOptions(AxisLabelOptions... axisLabelOptions)The label options for a chart axis.ChartAxisLabelOptions.BuildersortIconVisibility(String sortIconVisibility)The visibility configuration of the sort icon on a chart's axis label.ChartAxisLabelOptions.BuildersortIconVisibility(Visibility sortIconVisibility)The visibility configuration of the sort icon on a chart's axis label.ChartAxisLabelOptions.Buildervisibility(String visibility)The visibility of an axis label on a chart.ChartAxisLabelOptions.Buildervisibility(Visibility visibility)The visibility of an axis label on a chart.-
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, sdkFieldNameToField, sdkFields
-
-
-
-
Method Detail
-
visibility
ChartAxisLabelOptions.Builder visibility(String visibility)
The visibility of an axis label on a chart. Choose one of the following options:
-
VISIBLE: Shows the axis. -
HIDDEN: Hides the axis.
- Parameters:
visibility- The visibility of an axis label on a chart. Choose one of the following options:-
VISIBLE: Shows the axis. -
HIDDEN: Hides the axis.
-
- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
Visibility,Visibility
-
-
visibility
ChartAxisLabelOptions.Builder visibility(Visibility visibility)
The visibility of an axis label on a chart. Choose one of the following options:
-
VISIBLE: Shows the axis. -
HIDDEN: Hides the axis.
- Parameters:
visibility- The visibility of an axis label on a chart. Choose one of the following options:-
VISIBLE: Shows the axis. -
HIDDEN: Hides the axis.
-
- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
Visibility,Visibility
-
-
sortIconVisibility
ChartAxisLabelOptions.Builder sortIconVisibility(String sortIconVisibility)
The visibility configuration of the sort icon on a chart's axis label.
- Parameters:
sortIconVisibility- The visibility configuration of the sort icon on a chart's axis label.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
Visibility,Visibility
-
sortIconVisibility
ChartAxisLabelOptions.Builder sortIconVisibility(Visibility sortIconVisibility)
The visibility configuration of the sort icon on a chart's axis label.
- Parameters:
sortIconVisibility- The visibility configuration of the sort icon on a chart's axis label.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
Visibility,Visibility
-
axisLabelOptions
ChartAxisLabelOptions.Builder axisLabelOptions(Collection<AxisLabelOptions> axisLabelOptions)
The label options for a chart axis.
- Parameters:
axisLabelOptions- The label options for a chart axis.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
axisLabelOptions
ChartAxisLabelOptions.Builder axisLabelOptions(AxisLabelOptions... axisLabelOptions)
The label options for a chart axis.
- Parameters:
axisLabelOptions- The label options for a chart axis.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
axisLabelOptions
ChartAxisLabelOptions.Builder axisLabelOptions(Consumer<AxisLabelOptions.Builder>... axisLabelOptions)
The label options for a chart axis.
This is a convenience method that creates an instance of theAxisLabelOptions.Builderavoiding the need to create one manually viaAxisLabelOptions.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed to#axisLabelOptions(List.) - Parameters:
axisLabelOptions- a consumer that will call methods onAxisLabelOptions.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#axisLabelOptions(java.util.Collection)
-
-