interface FontSizeProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.QuickSight.Mixins.CfnDashboardPropsMixin.FontSizeProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsquicksight/mixins#CfnDashboardPropsMixin_FontSizeProperty |
Java | software.amazon.awscdk.mixins.preview.services.quicksight.mixins.CfnDashboardPropsMixin.FontSizeProperty |
Python | aws_cdk.mixins_preview.aws_quicksight.mixins.CfnDashboardPropsMixin.FontSizeProperty |
TypeScript | @aws-cdk/mixins-preview » aws_quicksight » mixins » CfnDashboardPropsMixin » FontSizeProperty |
The option that determines the text display size.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as quicksight_mixins } from '@aws-cdk/mixins-preview/aws-quicksight';
const fontSizeProperty: quicksight_mixins.CfnDashboardPropsMixin.FontSizeProperty = {
absolute: 'absolute',
relative: 'relative',
};
Properties
| Name | Type | Description |
|---|---|---|
| absolute? | string | The font size that you want to use in px. |
| relative? | string | The lexical name for the text size, proportional to its surrounding context. |
absolute?
Type:
string
(optional)
The font size that you want to use in px.
relative?
Type:
string
(optional)
The lexical name for the text size, proportional to its surrounding context.

.NET
Go
Java
Python
TypeScript