Interface YAxisOptions.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<YAxisOptions.Builder,YAxisOptions>,SdkBuilder<YAxisOptions.Builder,YAxisOptions>,SdkPojo
- Enclosing class:
- YAxisOptions
@Mutable @NotThreadSafe public static interface YAxisOptions.Builder extends SdkPojo, CopyableBuilder<YAxisOptions.Builder,YAxisOptions>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description YAxisOptions.BuilderyAxis(String yAxis)The Y axis type to be used in the chart.YAxisOptions.BuilderyAxis(SingleYAxisOption yAxis)The Y axis type to be used in the 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
-
yAxis
YAxisOptions.Builder yAxis(String yAxis)
The Y axis type to be used in the chart.
If you choose
PRIMARY_Y_AXIS, the primary Y Axis is located on the leftmost vertical axis of the chart.- Parameters:
yAxis- The Y axis type to be used in the chart.If you choose
PRIMARY_Y_AXIS, the primary Y Axis is located on the leftmost vertical axis of the chart.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
SingleYAxisOption,SingleYAxisOption
-
yAxis
YAxisOptions.Builder yAxis(SingleYAxisOption yAxis)
The Y axis type to be used in the chart.
If you choose
PRIMARY_Y_AXIS, the primary Y Axis is located on the leftmost vertical axis of the chart.- Parameters:
yAxis- The Y axis type to be used in the chart.If you choose
PRIMARY_Y_AXIS, the primary Y Axis is located on the leftmost vertical axis of the chart.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
SingleYAxisOption,SingleYAxisOption
-
-