Interface CfnAnalysis.SmallMultiplesOptionsProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnAnalysis.SmallMultiplesOptionsProperty.Jsii$Proxy
- Enclosing class:
CfnAnalysis
@Stability(Stable)
public static interface CfnAnalysis.SmallMultiplesOptionsProperty
extends software.amazon.jsii.JsiiSerializable
Options that determine the layout and display options of a chart's small multiples.
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.services.quicksight.*;
SmallMultiplesOptionsProperty smallMultiplesOptionsProperty = SmallMultiplesOptionsProperty.builder()
.maxVisibleColumns(123)
.maxVisibleRows(123)
.panelConfiguration(PanelConfigurationProperty.builder()
.backgroundColor("backgroundColor")
.backgroundVisibility("backgroundVisibility")
.borderColor("borderColor")
.borderStyle("borderStyle")
.borderThickness("borderThickness")
.borderVisibility("borderVisibility")
.gutterSpacing("gutterSpacing")
.gutterVisibility("gutterVisibility")
.title(PanelTitleOptionsProperty.builder()
.fontConfiguration(FontConfigurationProperty.builder()
.fontColor("fontColor")
.fontDecoration("fontDecoration")
.fontFamily("fontFamily")
.fontSize(FontSizeProperty.builder()
.absolute("absolute")
.relative("relative")
.build())
.fontStyle("fontStyle")
.fontWeight(FontWeightProperty.builder()
.name("name")
.build())
.build())
.horizontalTextAlignment("horizontalTextAlignment")
.visibility("visibility")
.build())
.build())
.xAxis(SmallMultiplesAxisPropertiesProperty.builder()
.placement("placement")
.scale("scale")
.build())
.yAxis(SmallMultiplesAxisPropertiesProperty.builder()
.placement("placement")
.scale("scale")
.build())
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnAnalysis.SmallMultiplesOptionsPropertystatic final classAn implementation forCfnAnalysis.SmallMultiplesOptionsProperty -
Method Summary
Modifier and TypeMethodDescriptionbuilder()default NumberSets the maximum number of visible columns to display in the grid of small multiples panels.default NumberSets the maximum number of visible rows to display in the grid of small multiples panels.default ObjectConfigures the display options for each small multiples panel.default ObjectgetXAxis()The properties of a small multiples X axis.default ObjectgetYAxis()The properties of a small multiples Y axis.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getMaxVisibleColumns
Sets the maximum number of visible columns to display in the grid of small multiples panels.The default is
Auto, which automatically adjusts the columns in the grid to fit the overall layout and size of the given chart.- See Also:
-
getMaxVisibleRows
Sets the maximum number of visible rows to display in the grid of small multiples panels.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 Also:
-
getPanelConfiguration
Configures the display options for each small multiples panel.Returns union: either
IResolvableorCfnAnalysis.PanelConfigurationProperty- See Also:
-
getXAxis
The properties of a small multiples X axis.Returns union: either
IResolvableorCfnAnalysis.SmallMultiplesAxisPropertiesProperty- See Also:
-
getYAxis
The properties of a small multiples Y axis.Returns union: either
IResolvableorCfnAnalysis.SmallMultiplesAxisPropertiesProperty- See Also:
-
builder
-