Interface LineChartDefaultSeriesSettings.Builder
-
- All Superinterfaces:
Buildable
,CopyableBuilder<LineChartDefaultSeriesSettings.Builder,LineChartDefaultSeriesSettings>
,SdkBuilder<LineChartDefaultSeriesSettings.Builder,LineChartDefaultSeriesSettings>
,SdkPojo
- Enclosing class:
- LineChartDefaultSeriesSettings
public static interface LineChartDefaultSeriesSettings.Builder extends SdkPojo, CopyableBuilder<LineChartDefaultSeriesSettings.Builder,LineChartDefaultSeriesSettings>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description LineChartDefaultSeriesSettings.Builder
axisBinding(String axisBinding)
The axis to which you are binding all line series to.LineChartDefaultSeriesSettings.Builder
axisBinding(AxisBinding axisBinding)
The axis to which you are binding all line series to.default LineChartDefaultSeriesSettings.Builder
lineStyleSettings(Consumer<LineChartLineStyleSettings.Builder> lineStyleSettings)
Line styles options for all line series in the visual.LineChartDefaultSeriesSettings.Builder
lineStyleSettings(LineChartLineStyleSettings lineStyleSettings)
Line styles options for all line series in the visual.default LineChartDefaultSeriesSettings.Builder
markerStyleSettings(Consumer<LineChartMarkerStyleSettings.Builder> markerStyleSettings)
Marker styles options for all line series in the visual.LineChartDefaultSeriesSettings.Builder
markerStyleSettings(LineChartMarkerStyleSettings markerStyleSettings)
Marker styles options for all line series in the visual.-
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
-
axisBinding
LineChartDefaultSeriesSettings.Builder axisBinding(String axisBinding)
The axis to which you are binding all line series to.
- Parameters:
axisBinding
- The axis to which you are binding all line series to.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
AxisBinding
,AxisBinding
-
axisBinding
LineChartDefaultSeriesSettings.Builder axisBinding(AxisBinding axisBinding)
The axis to which you are binding all line series to.
- Parameters:
axisBinding
- The axis to which you are binding all line series to.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
AxisBinding
,AxisBinding
-
lineStyleSettings
LineChartDefaultSeriesSettings.Builder lineStyleSettings(LineChartLineStyleSettings lineStyleSettings)
Line styles options for all line series in the visual.
- Parameters:
lineStyleSettings
- Line styles options for all line series in the visual.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
lineStyleSettings
default LineChartDefaultSeriesSettings.Builder lineStyleSettings(Consumer<LineChartLineStyleSettings.Builder> lineStyleSettings)
Line styles options for all line series in the visual.
This is a convenience method that creates an instance of theLineChartLineStyleSettings.Builder
avoiding the need to create one manually viaLineChartLineStyleSettings.builder()
.When the
Consumer
completes,SdkBuilder.build()
is called immediately and its result is passed tolineStyleSettings(LineChartLineStyleSettings)
.- Parameters:
lineStyleSettings
- a consumer that will call methods onLineChartLineStyleSettings.Builder
- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
lineStyleSettings(LineChartLineStyleSettings)
-
markerStyleSettings
LineChartDefaultSeriesSettings.Builder markerStyleSettings(LineChartMarkerStyleSettings markerStyleSettings)
Marker styles options for all line series in the visual.
- Parameters:
markerStyleSettings
- Marker styles options for all line series in the visual.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
markerStyleSettings
default LineChartDefaultSeriesSettings.Builder markerStyleSettings(Consumer<LineChartMarkerStyleSettings.Builder> markerStyleSettings)
Marker styles options for all line series in the visual.
This is a convenience method that creates an instance of theLineChartMarkerStyleSettings.Builder
avoiding the need to create one manually viaLineChartMarkerStyleSettings.builder()
.When the
Consumer
completes,SdkBuilder.build()
is called immediately and its result is passed tomarkerStyleSettings(LineChartMarkerStyleSettings)
.- Parameters:
markerStyleSettings
- a consumer that will call methods onLineChartMarkerStyleSettings.Builder
- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
markerStyleSettings(LineChartMarkerStyleSettings)
-
-