/* * Copyright 2018-2023 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance with * the License. A copy of the License is located at * * http://aws.amazon.com/apache2.0 * * or in the "license" file accompanying this file. This file is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR * CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions * and limitations under the License. */ package com.amazonaws.services.quicksight.model; import java.io.Serializable; import javax.annotation.Generated; import com.amazonaws.protocol.StructuredPojo; import com.amazonaws.protocol.ProtocolMarshaller; /** *

* Line styles options for a line series in LineChartVisual. *

* * @see AWS API Documentation */ @Generated("com.amazonaws:aws-java-sdk-code-generator") public class LineChartLineStyleSettings implements Serializable, Cloneable, StructuredPojo { /** *

* Configuration option that determines whether to show the line for the series. *

*/ private String lineVisibility; /** *

* Interpolation style for line series. *

* */ private String lineInterpolation; /** *

* Line style for line series. *

* */ private String lineStyle; /** *

* Width that determines the line thickness. *

*/ private String lineWidth; /** *

* Configuration option that determines whether to show the line for the series. *

* * @param lineVisibility * Configuration option that determines whether to show the line for the series. * @see Visibility */ public void setLineVisibility(String lineVisibility) { this.lineVisibility = lineVisibility; } /** *

* Configuration option that determines whether to show the line for the series. *

* * @return Configuration option that determines whether to show the line for the series. * @see Visibility */ public String getLineVisibility() { return this.lineVisibility; } /** *

* Configuration option that determines whether to show the line for the series. *

* * @param lineVisibility * Configuration option that determines whether to show the line for the series. * @return Returns a reference to this object so that method calls can be chained together. * @see Visibility */ public LineChartLineStyleSettings withLineVisibility(String lineVisibility) { setLineVisibility(lineVisibility); return this; } /** *

* Configuration option that determines whether to show the line for the series. *

* * @param lineVisibility * Configuration option that determines whether to show the line for the series. * @return Returns a reference to this object so that method calls can be chained together. * @see Visibility */ public LineChartLineStyleSettings withLineVisibility(Visibility lineVisibility) { this.lineVisibility = lineVisibility.toString(); return this; } /** *

* Interpolation style for line series. *

* * * @param lineInterpolation * Interpolation style for line series.

*