Class CfnDashboard.VisibleRangeOptionsProperty
The range options for the data zoom scroll bar.
Implements
Inherited Members
Namespace: Amazon.CDK.AWS.QuickSight
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnDashboard.VisibleRangeOptionsProperty : CfnDashboard.IVisibleRangeOptionsProperty
Syntax (vb)
Public Class CfnDashboard.VisibleRangeOptionsProperty Implements CfnDashboard.IVisibleRangeOptionsProperty
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 visibleRangeOptionsProperty = new VisibleRangeOptionsProperty {
PercentRange = new PercentVisibleRangeProperty {
From = 123,
To = 123
}
};
Synopsis
Constructors
VisibleRangeOptionsProperty() | The range options for the data zoom scroll bar. |
Properties
PercentRange | The percent range in the visible range. |
Constructors
VisibleRangeOptionsProperty()
The range options for the data zoom scroll bar.
public VisibleRangeOptionsProperty()
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 visibleRangeOptionsProperty = new VisibleRangeOptionsProperty {
PercentRange = new PercentVisibleRangeProperty {
From = 123,
To = 123
}
};
Properties
PercentRange
The percent range in the visible range.
public object? PercentRange { get; set; }