Show / Hide Table of Contents

Interface CfnAnalysisPropsMixin.ISmallMultiplesOptionsProperty

Options that determine the layout and display options of a chart's small multiples.

Namespace: Amazon.CDK.Mixins.Preview.AWS.QuickSight.Mixins
Assembly: Amazon.CDK.Mixins.Preview.dll
Syntax (csharp)
public interface CfnAnalysisPropsMixin.ISmallMultiplesOptionsProperty
Syntax (vb)
Public Interface CfnAnalysisPropsMixin.ISmallMultiplesOptionsProperty
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-analysis-smallmultiplesoptions.html

ExampleMetadata: fixture=_generated

Examples
// The code below shows an example of how to instantiate this type.
             // The values are placeholders you should change.
             using Amazon.CDK.Mixins.Preview.AWS.QuickSight.Mixins;

             var smallMultiplesOptionsProperty = new SmallMultiplesOptionsProperty {
                 MaxVisibleColumns = 123,
                 MaxVisibleRows = 123,
                 PanelConfiguration = new PanelConfigurationProperty {
                     BackgroundColor = "backgroundColor",
                     BackgroundVisibility = "backgroundVisibility",
                     BorderColor = "borderColor",
                     BorderStyle = "borderStyle",
                     BorderThickness = "borderThickness",
                     BorderVisibility = "borderVisibility",
                     GutterSpacing = "gutterSpacing",
                     GutterVisibility = "gutterVisibility",
                     Title = new PanelTitleOptionsProperty {
                         FontConfiguration = new FontConfigurationProperty {
                             FontColor = "fontColor",
                             FontDecoration = "fontDecoration",
                             FontFamily = "fontFamily",
                             FontSize = new FontSizeProperty {
                                 Absolute = "absolute",
                                 Relative = "relative"
                             },
                             FontStyle = "fontStyle",
                             FontWeight = new FontWeightProperty {
                                 Name = "name"
                             }
                         },
                         HorizontalTextAlignment = "horizontalTextAlignment",
                         Visibility = "visibility"
                     }
                 },
                 XAxis = new SmallMultiplesAxisPropertiesProperty {
                     Placement = "placement",
                     Scale = "scale"
                 },
                 YAxis = new SmallMultiplesAxisPropertiesProperty {
                     Placement = "placement",
                     Scale = "scale"
                 }
             };

Synopsis

Properties

MaxVisibleColumns

Sets the maximum number of visible columns to display in the grid of small multiples panels.

MaxVisibleRows

Sets the maximum number of visible rows to display in the grid of small multiples panels.

PanelConfiguration

Configures the display options for each small multiples panel.

XAxis

The properties of a small multiples X axis.

YAxis

The properties of a small multiples Y axis.

Properties

MaxVisibleColumns

Sets the maximum number of visible columns to display in the grid of small multiples panels.

double? MaxVisibleColumns { get; }
Property Value

double?

Remarks

The default is Auto , which automatically adjusts the columns in the grid to fit the overall layout and size of the given chart.

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-analysis-smallmultiplesoptions.html#cfn-quicksight-analysis-smallmultiplesoptions-maxvisiblecolumns

MaxVisibleRows

Sets the maximum number of visible rows to display in the grid of small multiples panels.

double? MaxVisibleRows { get; }
Property Value

double?

Remarks

The default value is Auto , which automatically adjusts the rows in the grid to fit the overall layout and size of the given chart.

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-analysis-smallmultiplesoptions.html#cfn-quicksight-analysis-smallmultiplesoptions-maxvisiblerows

PanelConfiguration

Configures the display options for each small multiples panel.

object? PanelConfiguration { get; }
Property Value

object

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-analysis-smallmultiplesoptions.html#cfn-quicksight-analysis-smallmultiplesoptions-panelconfiguration

Type union: either IResolvable or CfnAnalysisPropsMixin.IPanelConfigurationProperty

XAxis

The properties of a small multiples X axis.

object? XAxis { get; }
Property Value

object

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-analysis-smallmultiplesoptions.html#cfn-quicksight-analysis-smallmultiplesoptions-xaxis

Type union: either IResolvable or CfnAnalysisPropsMixin.ISmallMultiplesAxisPropertiesProperty

YAxis

The properties of a small multiples Y axis.

object? YAxis { get; }
Property Value

object

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-analysis-smallmultiplesoptions.html#cfn-quicksight-analysis-smallmultiplesoptions-yaxis

Type union: either IResolvable or CfnAnalysisPropsMixin.ISmallMultiplesAxisPropertiesProperty

Back to top Generated by DocFX