interface AxisDisplayOptionsProperty
Language | Type name |
---|---|
.NET | Amazon.CDK.AWS.QuickSight.CfnTemplate.AxisDisplayOptionsProperty |
Java | software.amazon.awscdk.services.quicksight.CfnTemplate.AxisDisplayOptionsProperty |
Python | aws_cdk.aws_quicksight.CfnTemplate.AxisDisplayOptionsProperty |
TypeScript | @aws-cdk/aws-quicksight » CfnTemplate » AxisDisplayOptionsProperty |
The display options for the axis label.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import * as quicksight from '@aws-cdk/aws-quicksight';
declare const dataDriven: any;
const axisDisplayOptionsProperty: quicksight.CfnTemplate.AxisDisplayOptionsProperty = {
axisLineVisibility: 'axisLineVisibility',
axisOffset: 'axisOffset',
dataOptions: {
dateAxisOptions: {
missingDateVisibility: 'missingDateVisibility',
},
numericAxisOptions: {
range: {
dataDriven: dataDriven,
minMax: {
maximum: 123,
minimum: 123,
},
},
scale: {
linear: {
stepCount: 123,
stepSize: 123,
},
logarithmic: {
base: 123,
},
},
},
},
gridLineVisibility: 'gridLineVisibility',
scrollbarOptions: {
visibility: 'visibility',
visibleRange: {
percentRange: {
from: 123,
to: 123,
},
},
},
tickLabelOptions: {
labelOptions: {
customLabel: 'customLabel',
fontConfiguration: {
fontColor: 'fontColor',
fontDecoration: 'fontDecoration',
fontSize: {
relative: 'relative',
},
fontStyle: 'fontStyle',
fontWeight: {
name: 'name',
},
},
visibility: 'visibility',
},
rotationAngle: 123,
},
};
Properties
Name | Type | Description |
---|---|---|
axis | string | Determines whether or not the axis line is visible. |
axis | string | The offset value that determines the starting placement of the axis within a visual's bounds. |
data | IResolvable | Axis | The data options for an axis. |
grid | string | Determines whether or not the grid line is visible. |
scrollbar | IResolvable | Scroll | The scroll bar options for an axis. |
tick | IResolvable | Axis | The tick label options of an axis. |
axisLineVisibility?
Type:
string
(optional)
Determines whether or not the axis line is visible.
axisOffset?
Type:
string
(optional)
The offset value that determines the starting placement of the axis within a visual's bounds.
dataOptions?
Type:
IResolvable
|
Axis
(optional)
The data options for an axis.
gridLineVisibility?
Type:
string
(optional)
Determines whether or not the grid line is visible.
scrollbarOptions?
Type:
IResolvable
|
Scroll
(optional)
The scroll bar options for an axis.
tickLabelOptions?
Type:
IResolvable
|
Axis
(optional)
The tick label options of an axis.