Class CfnAnalysis.TableFieldOptionsProperty
The field options of a table visual.
Inheritance
Implements
Namespace: Amazon.CDK.AWS.QuickSight
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class TableFieldOptionsProperty : Object, CfnAnalysis.ITableFieldOptionsProperty
Syntax (vb)
Public Class TableFieldOptionsProperty
Inherits Object
Implements CfnAnalysis.ITableFieldOptionsProperty
Remarks
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.AWS.QuickSight;
var tableFieldOptionsProperty = new TableFieldOptionsProperty {
Order = new [] { "order" },
PinnedFieldOptions = new TablePinnedFieldOptionsProperty {
PinnedLeftFields = new [] { "pinnedLeftFields" }
},
SelectedFieldOptions = new [] { new TableFieldOptionProperty {
FieldId = "fieldId",
// the properties below are optional
CustomLabel = "customLabel",
UrlStyling = new TableFieldURLConfigurationProperty {
ImageConfiguration = new TableFieldImageConfigurationProperty {
SizingOptions = new TableCellImageSizingConfigurationProperty {
TableCellImageScalingConfiguration = "tableCellImageScalingConfiguration"
}
},
LinkConfiguration = new TableFieldLinkConfigurationProperty {
Content = new TableFieldLinkContentConfigurationProperty {
CustomIconContent = new TableFieldCustomIconContentProperty {
Icon = "icon"
},
CustomTextContent = new TableFieldCustomTextContentProperty {
FontConfiguration = new FontConfigurationProperty {
FontColor = "fontColor",
FontDecoration = "fontDecoration",
FontSize = new FontSizeProperty {
Absolute = "absolute",
Relative = "relative"
},
FontStyle = "fontStyle",
FontWeight = new FontWeightProperty {
Name = "name"
}
},
// the properties below are optional
Value = "value"
}
},
Target = "target"
}
},
Visibility = "visibility",
Width = "width"
} }
};
Synopsis
Constructors
Table |
Properties
Order | The order of the field IDs that are configured as field options for a table visual. |
Pinned |
The settings for the pinned columns of a table visual. |
Selected |
The field options to be configured to a table. |
Constructors
TableFieldOptionsProperty()
public TableFieldOptionsProperty()
Properties
Order
The order of the field IDs that are configured as field options for a table visual.
public string[] Order { get; set; }
Property Value
System.
Remarks
PinnedFieldOptions
The settings for the pinned columns of a table visual.
public object PinnedFieldOptions { get; set; }
Property Value
System.
Remarks
SelectedFieldOptions
The field options to be configured to a table.
public object SelectedFieldOptions { get; set; }
Property Value
System.