/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #pragma once #include #include #include #include #include namespace Aws { namespace Utils { namespace Json { class JsonValue; class JsonView; } // namespace Json } // namespace Utils namespace QuickSight { namespace Model { /** *

The options that determine the default presentation of all line series in * LineChartVisual.

See Also:

AWS * API Reference

*/ class LineChartDefaultSeriesSettings { public: AWS_QUICKSIGHT_API LineChartDefaultSeriesSettings(); AWS_QUICKSIGHT_API LineChartDefaultSeriesSettings(Aws::Utils::Json::JsonView jsonValue); AWS_QUICKSIGHT_API LineChartDefaultSeriesSettings& operator=(Aws::Utils::Json::JsonView jsonValue); AWS_QUICKSIGHT_API Aws::Utils::Json::JsonValue Jsonize() const; /** *

The axis to which you are binding all line series to.

*/ inline const AxisBinding& GetAxisBinding() const{ return m_axisBinding; } /** *

The axis to which you are binding all line series to.

*/ inline bool AxisBindingHasBeenSet() const { return m_axisBindingHasBeenSet; } /** *

The axis to which you are binding all line series to.

*/ inline void SetAxisBinding(const AxisBinding& value) { m_axisBindingHasBeenSet = true; m_axisBinding = value; } /** *

The axis to which you are binding all line series to.

*/ inline void SetAxisBinding(AxisBinding&& value) { m_axisBindingHasBeenSet = true; m_axisBinding = std::move(value); } /** *

The axis to which you are binding all line series to.

*/ inline LineChartDefaultSeriesSettings& WithAxisBinding(const AxisBinding& value) { SetAxisBinding(value); return *this;} /** *

The axis to which you are binding all line series to.

*/ inline LineChartDefaultSeriesSettings& WithAxisBinding(AxisBinding&& value) { SetAxisBinding(std::move(value)); return *this;} /** *

Line styles options for all line series in the visual.

*/ inline const LineChartLineStyleSettings& GetLineStyleSettings() const{ return m_lineStyleSettings; } /** *

Line styles options for all line series in the visual.

*/ inline bool LineStyleSettingsHasBeenSet() const { return m_lineStyleSettingsHasBeenSet; } /** *

Line styles options for all line series in the visual.

*/ inline void SetLineStyleSettings(const LineChartLineStyleSettings& value) { m_lineStyleSettingsHasBeenSet = true; m_lineStyleSettings = value; } /** *

Line styles options for all line series in the visual.

*/ inline void SetLineStyleSettings(LineChartLineStyleSettings&& value) { m_lineStyleSettingsHasBeenSet = true; m_lineStyleSettings = std::move(value); } /** *

Line styles options for all line series in the visual.

*/ inline LineChartDefaultSeriesSettings& WithLineStyleSettings(const LineChartLineStyleSettings& value) { SetLineStyleSettings(value); return *this;} /** *

Line styles options for all line series in the visual.

*/ inline LineChartDefaultSeriesSettings& WithLineStyleSettings(LineChartLineStyleSettings&& value) { SetLineStyleSettings(std::move(value)); return *this;} /** *

Marker styles options for all line series in the visual.

*/ inline const LineChartMarkerStyleSettings& GetMarkerStyleSettings() const{ return m_markerStyleSettings; } /** *

Marker styles options for all line series in the visual.

*/ inline bool MarkerStyleSettingsHasBeenSet() const { return m_markerStyleSettingsHasBeenSet; } /** *

Marker styles options for all line series in the visual.

*/ inline void SetMarkerStyleSettings(const LineChartMarkerStyleSettings& value) { m_markerStyleSettingsHasBeenSet = true; m_markerStyleSettings = value; } /** *

Marker styles options for all line series in the visual.

*/ inline void SetMarkerStyleSettings(LineChartMarkerStyleSettings&& value) { m_markerStyleSettingsHasBeenSet = true; m_markerStyleSettings = std::move(value); } /** *

Marker styles options for all line series in the visual.

*/ inline LineChartDefaultSeriesSettings& WithMarkerStyleSettings(const LineChartMarkerStyleSettings& value) { SetMarkerStyleSettings(value); return *this;} /** *

Marker styles options for all line series in the visual.

*/ inline LineChartDefaultSeriesSettings& WithMarkerStyleSettings(LineChartMarkerStyleSettings&& value) { SetMarkerStyleSettings(std::move(value)); return *this;} private: AxisBinding m_axisBinding; bool m_axisBindingHasBeenSet = false; LineChartLineStyleSettings m_lineStyleSettings; bool m_lineStyleSettingsHasBeenSet = false; LineChartMarkerStyleSettings m_markerStyleSettings; bool m_markerStyleSettingsHasBeenSet = false; }; } // namespace Model } // namespace QuickSight } // namespace Aws