Interface CfnDashboard.IWordCloudOptionsProperty
The word cloud options for a word cloud visual.
Namespace: Amazon.CDK.AWS.QuickSight
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public interface IWordCloudOptionsProperty
Syntax (vb)
Public Interface IWordCloudOptionsProperty
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 wordCloudOptionsProperty = new WordCloudOptionsProperty {
CloudLayout = "cloudLayout",
MaximumStringLength = 123,
WordCasing = "wordCasing",
WordOrientation = "wordOrientation",
WordPadding = "wordPadding",
WordScaling = "wordScaling"
};
Synopsis
Properties
Cloud |
The cloud layout options (fluid, normal) of a word cloud. |
Maximum |
The length limit of each word from 1-100. |
Word |
The word casing options (lower_case, existing_case) for the words in a word cloud. |
Word |
The word orientation options (horizontal, horizontal_and_vertical) for the words in a word cloud. |
Word |
The word padding options (none, small, medium, large) for the words in a word cloud. |
Word |
The word scaling options (emphasize, normal) for the words in a word cloud. |
Properties
CloudLayout
The cloud layout options (fluid, normal) of a word cloud.
virtual string CloudLayout { get; }
Property Value
System.
Remarks
MaximumStringLength
The length limit of each word from 1-100.
virtual Nullable<double> MaximumStringLength { get; }
Property Value
System.
Remarks
WordCasing
The word casing options (lower_case, existing_case) for the words in a word cloud.
virtual string WordCasing { get; }
Property Value
System.
Remarks
WordOrientation
The word orientation options (horizontal, horizontal_and_vertical) for the words in a word cloud.
virtual string WordOrientation { get; }
Property Value
System.
Remarks
WordPadding
The word padding options (none, small, medium, large) for the words in a word cloud.
virtual string WordPadding { get; }
Property Value
System.
Remarks
WordScaling
The word scaling options (emphasize, normal) for the words in a word cloud.
virtual string WordScaling { get; }
Property Value
System.