interface TableCellStyleProperty
Language | Type name |
---|---|
![]() | Amazon.CDK.AWS.QuickSight.CfnTemplate.TableCellStyleProperty |
![]() | software.amazon.awscdk.services.quicksight.CfnTemplate.TableCellStyleProperty |
![]() | aws_cdk.aws_quicksight.CfnTemplate.TableCellStyleProperty |
![]() | @aws-cdk/aws-quicksight » CfnTemplate » TableCellStyleProperty |
The table cell style for a cell in pivot table or table visual.
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';
const tableCellStyleProperty: quicksight.CfnTemplate.TableCellStyleProperty = {
backgroundColor: 'backgroundColor',
border: {
sideSpecificBorder: {
bottom: {
color: 'color',
style: 'style',
thickness: 123,
},
innerHorizontal: {
color: 'color',
style: 'style',
thickness: 123,
},
innerVertical: {
color: 'color',
style: 'style',
thickness: 123,
},
left: {
color: 'color',
style: 'style',
thickness: 123,
},
right: {
color: 'color',
style: 'style',
thickness: 123,
},
top: {
color: 'color',
style: 'style',
thickness: 123,
},
},
uniformBorder: {
color: 'color',
style: 'style',
thickness: 123,
},
},
fontConfiguration: {
fontColor: 'fontColor',
fontDecoration: 'fontDecoration',
fontSize: {
relative: 'relative',
},
fontStyle: 'fontStyle',
fontWeight: {
name: 'name',
},
},
height: 123,
horizontalTextAlignment: 'horizontalTextAlignment',
textWrap: 'textWrap',
verticalTextAlignment: 'verticalTextAlignment',
visibility: 'visibility',
};
Properties
Name | Type | Description |
---|---|---|
background | string | The background color for the table cells. |
border? | IResolvable | Global | The borders for the table cells. |
font | IResolvable | Font | The font configuration of the table cells. |
height? | number | The height color for the table cells. |
horizontal | string | The horizontal text alignment (left, center, right, auto) for the table cells. |
text | string | The text wrap (none, wrap) for the table cells. |
vertical | string | The vertical text alignment (top, middle, bottom) for the table cells. |
visibility? | string | The visibility of the table cells. |
backgroundColor?
Type:
string
(optional)
The background color for the table cells.
border?
Type:
IResolvable
|
Global
(optional)
The borders for the table cells.
fontConfiguration?
Type:
IResolvable
|
Font
(optional)
The font configuration of the table cells.
height?
Type:
number
(optional)
The height color for the table cells.
horizontalTextAlignment?
Type:
string
(optional)
The horizontal text alignment (left, center, right, auto) for the table cells.
textWrap?
Type:
string
(optional)
The text wrap (none, wrap) for the table cells.
verticalTextAlignment?
Type:
string
(optional)
The vertical text alignment (top, middle, bottom) for the table cells.
visibility?
Type:
string
(optional)
The visibility of the table cells.