/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include The options for configuring a donut chart or pie chart.See
* Also:
AWS
* API Reference
The option for define the arc of the chart shape. Valid values are as * follows:
WHOLE
- A pie chart
* SMALL
- A small-sized donut chart
* MEDIUM
- A medium-sized donut chart
* LARGE
- A large-sized donut chart
The option for define the arc of the chart shape. Valid values are as * follows:
WHOLE
- A pie chart
* SMALL
- A small-sized donut chart
* MEDIUM
- A medium-sized donut chart
* LARGE
- A large-sized donut chart
The option for define the arc of the chart shape. Valid values are as * follows:
WHOLE
- A pie chart
* SMALL
- A small-sized donut chart
* MEDIUM
- A medium-sized donut chart
* LARGE
- A large-sized donut chart
The option for define the arc of the chart shape. Valid values are as * follows:
WHOLE
- A pie chart
* SMALL
- A small-sized donut chart
* MEDIUM
- A medium-sized donut chart
* LARGE
- A large-sized donut chart
The option for define the arc of the chart shape. Valid values are as * follows:
WHOLE
- A pie chart
* SMALL
- A small-sized donut chart
* MEDIUM
- A medium-sized donut chart
* LARGE
- A large-sized donut chart
The option for define the arc of the chart shape. Valid values are as * follows:
WHOLE
- A pie chart
* SMALL
- A small-sized donut chart
* MEDIUM
- A medium-sized donut chart
* LARGE
- A large-sized donut chart
The label options of the label that is displayed in the center of a donut * chart. This option isn't available for pie charts.
*/ inline const DonutCenterOptions& GetDonutCenterOptions() const{ return m_donutCenterOptions; } /** *The label options of the label that is displayed in the center of a donut * chart. This option isn't available for pie charts.
*/ inline bool DonutCenterOptionsHasBeenSet() const { return m_donutCenterOptionsHasBeenSet; } /** *The label options of the label that is displayed in the center of a donut * chart. This option isn't available for pie charts.
*/ inline void SetDonutCenterOptions(const DonutCenterOptions& value) { m_donutCenterOptionsHasBeenSet = true; m_donutCenterOptions = value; } /** *The label options of the label that is displayed in the center of a donut * chart. This option isn't available for pie charts.
*/ inline void SetDonutCenterOptions(DonutCenterOptions&& value) { m_donutCenterOptionsHasBeenSet = true; m_donutCenterOptions = std::move(value); } /** *The label options of the label that is displayed in the center of a donut * chart. This option isn't available for pie charts.
*/ inline DonutOptions& WithDonutCenterOptions(const DonutCenterOptions& value) { SetDonutCenterOptions(value); return *this;} /** *The label options of the label that is displayed in the center of a donut * chart. This option isn't available for pie charts.
*/ inline DonutOptions& WithDonutCenterOptions(DonutCenterOptions&& value) { SetDonutCenterOptions(std::move(value)); return *this;} private: ArcOptions m_arcOptions; bool m_arcOptionsHasBeenSet = false; DonutCenterOptions m_donutCenterOptions; bool m_donutCenterOptionsHasBeenSet = false; }; } // namespace Model } // namespace QuickSight } // namespace Aws