Interface CfnAnalysis.ChartAxisLabelOptionsProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnAnalysis.ChartAxisLabelOptionsProperty.Jsii$Proxy
- Enclosing class:
CfnAnalysis
@Stability(Stable)
public static interface CfnAnalysis.ChartAxisLabelOptionsProperty
extends software.amazon.jsii.JsiiSerializable
The label options for an axis on a chart.
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.*;
ChartAxisLabelOptionsProperty chartAxisLabelOptionsProperty = ChartAxisLabelOptionsProperty.builder()
.axisLabelOptions(List.of(AxisLabelOptionsProperty.builder()
.applyTo(AxisLabelReferenceOptionsProperty.builder()
.column(ColumnIdentifierProperty.builder()
.columnName("columnName")
.dataSetIdentifier("dataSetIdentifier")
.build())
.fieldId("fieldId")
.build())
.customLabel("customLabel")
.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())
.build()))
.sortIconVisibility("sortIconVisibility")
.visibility("visibility")
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnAnalysis.ChartAxisLabelOptionsPropertystatic final classAn implementation forCfnAnalysis.ChartAxisLabelOptionsProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getAxisLabelOptions
The label options for a chart axis.Returns union: either
IResolvableor Listinvalid input: '<'eitherIResolvableorCfnAnalysis.AxisLabelOptionsProperty>- See Also:
-
getSortIconVisibility
The visibility configuration of the sort icon on a chart's axis label.- See Also:
-
getVisibility
The visibility of an axis label on a chart. Choose one of the following options:.VISIBLE: Shows the axis.HIDDEN: Hides the axis.
- See Also:
-
builder
-