Interface ChartAxisLabelOptions.Builder

All Superinterfaces:
Buildable, CopyableBuilder<ChartAxisLabelOptions.Builder,ChartAxisLabelOptions>, SdkBuilder<ChartAxisLabelOptions.Builder,ChartAxisLabelOptions>, SdkPojo
Enclosing class:
ChartAxisLabelOptions

public static interface ChartAxisLabelOptions.Builder extends SdkPojo, CopyableBuilder<ChartAxisLabelOptions.Builder,ChartAxisLabelOptions>
  • Method Details

    • 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

      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:
    • 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:
    • 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:
    • 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 the AxisLabelOptions.Builder avoiding the need to create one manually via AxisLabelOptions.builder().

      When the Consumer completes, SdkBuilder.build() is called immediately and its result is passed to axisLabelOptions(List<AxisLabelOptions>).

      Parameters:
      axisLabelOptions - a consumer that will call methods on AxisLabelOptions.Builder
      Returns:
      Returns a reference to this object so that method calls can be chained together.
      See Also: