interface ChartAxisLabelOptionsProperty
Language | Type name |
---|---|
.NET | Amazon.CDK.AWS.QuickSight.CfnAnalysis.ChartAxisLabelOptionsProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsquicksight#CfnAnalysis_ChartAxisLabelOptionsProperty |
Java | software.amazon.awscdk.services.quicksight.CfnAnalysis.ChartAxisLabelOptionsProperty |
Python | aws_cdk.aws_quicksight.CfnAnalysis.ChartAxisLabelOptionsProperty |
TypeScript | aws-cdk-lib » aws_quicksight » CfnAnalysis » ChartAxisLabelOptionsProperty |
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 { aws_quicksight as quicksight } from 'aws-cdk-lib';
const chartAxisLabelOptionsProperty: quicksight.CfnAnalysis.ChartAxisLabelOptionsProperty = {
axisLabelOptions: [{
applyTo: {
column: {
columnName: 'columnName',
dataSetIdentifier: 'dataSetIdentifier',
},
fieldId: 'fieldId',
},
customLabel: 'customLabel',
fontConfiguration: {
fontColor: 'fontColor',
fontDecoration: 'fontDecoration',
fontSize: {
relative: 'relative',
},
fontStyle: 'fontStyle',
fontWeight: {
name: 'name',
},
},
}],
sortIconVisibility: 'sortIconVisibility',
visibility: 'visibility',
};
Properties
Name | Type | Description |
---|---|---|
axis | IResolvable | IResolvable | Axis [] | The label options for a chart axis. |
sort | string | The visibility configuration of the sort icon on a chart's axis label. |
visibility? | string | The visibility of an axis label on a chart. Choose one of the following options:. |
axisLabelOptions?
Type:
IResolvable
|
IResolvable
|
Axis
[]
(optional)
The label options for a chart axis.
sortIconVisibility?
Type:
string
(optional)
The visibility configuration of the sort icon on a chart's axis label.
visibility?
Type:
string
(optional)
The visibility of an axis label on a chart. Choose one of the following options:.
VISIBLE
: Shows the axis.HIDDEN
: Hides the axis.