Class CfnAnalysisPropsMixin.TableInlineVisualizationProperty
The inline visualization of a specific type to display within a chart.
Inherited Members
Namespace: Amazon.CDK.CfnPropertyMixins.AWS.QuickSight
Assembly: Amazon.CDK.CfnPropertyMixins.dll
Syntax (csharp)
public class CfnAnalysisPropsMixin.TableInlineVisualizationProperty : CfnAnalysisPropsMixin.ITableInlineVisualizationProperty
Syntax (vb)
Public Class CfnAnalysisPropsMixin.TableInlineVisualizationProperty Implements CfnAnalysisPropsMixin.ITableInlineVisualizationProperty
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.CfnPropertyMixins.AWS.QuickSight;
var tableInlineVisualizationProperty = new TableInlineVisualizationProperty {
DataBars = new DataBarsOptionsProperty {
FieldId = "fieldId",
NegativeColor = "negativeColor",
PositiveColor = "positiveColor"
}
};
Synopsis
Constructors
| TableInlineVisualizationProperty() | The inline visualization of a specific type to display within a chart. |
Properties
| DataBars | The configuration of the inline visualization of the data bars within a chart. |
Constructors
TableInlineVisualizationProperty()
The inline visualization of a specific type to display within a chart.
public TableInlineVisualizationProperty()
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.CfnPropertyMixins.AWS.QuickSight;
var tableInlineVisualizationProperty = new TableInlineVisualizationProperty {
DataBars = new DataBarsOptionsProperty {
FieldId = "fieldId",
NegativeColor = "negativeColor",
PositiveColor = "positiveColor"
}
};
Properties
DataBars
The configuration of the inline visualization of the data bars within a chart.
public object? DataBars { get; set; }