Class CfnAnalysis.SmallMultiplesOptionsProperty
Options that determine the layout and display options of a chart's small multiples.
Inheritance
Implements
Namespace: Amazon.CDK.AWS.QuickSight
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class SmallMultiplesOptionsProperty : Object, CfnAnalysis.ISmallMultiplesOptionsProperty
Syntax (vb)
Public Class SmallMultiplesOptionsProperty
Inherits Object
Implements CfnAnalysis.ISmallMultiplesOptionsProperty
Remarks
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.AWS.QuickSight;
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",
FontSize = new FontSizeProperty {
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
Constructors
SmallMultiplesOptionsProperty() |
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. |
Constructors
SmallMultiplesOptionsProperty()
public SmallMultiplesOptionsProperty()
Properties
MaxVisibleColumns
Sets the maximum number of visible columns to display in the grid of small multiples panels.
public Nullable<double> MaxVisibleColumns { get; set; }
Property Value
System.Nullable<System.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.
MaxVisibleRows
Sets the maximum number of visible rows to display in the grid of small multiples panels.
public Nullable<double> MaxVisibleRows { get; set; }
Property Value
System.Nullable<System.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.
PanelConfiguration
Configures the display options for each small multiples panel.
public object PanelConfiguration { get; set; }
Property Value
System.Object
Remarks
XAxis
The properties of a small multiples X axis.
public object XAxis { get; set; }
Property Value
System.Object
Remarks
YAxis
The properties of a small multiples Y axis.
public object YAxis { get; set; }
Property Value
System.Object