Class CfnTemplate.AxisDisplayMinMaxRangeProperty
The minimum and maximum setup for an axis display range.
Implements
Inherited Members
Namespace: Amazon.CDK.AWS.QuickSight
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnTemplate.AxisDisplayMinMaxRangeProperty : CfnTemplate.IAxisDisplayMinMaxRangeProperty
Syntax (vb)
Public Class CfnTemplate.AxisDisplayMinMaxRangeProperty Implements CfnTemplate.IAxisDisplayMinMaxRangeProperty
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 axisDisplayMinMaxRangeProperty = new AxisDisplayMinMaxRangeProperty {
Maximum = 123,
Minimum = 123
};
Synopsis
Constructors
AxisDisplayMinMaxRangeProperty() | The minimum and maximum setup for an axis display range. |
Properties
Maximum | The maximum setup for an axis display range. |
Minimum | The minimum setup for an axis display range. |
Constructors
AxisDisplayMinMaxRangeProperty()
The minimum and maximum setup for an axis display range.
public AxisDisplayMinMaxRangeProperty()
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 axisDisplayMinMaxRangeProperty = new AxisDisplayMinMaxRangeProperty {
Maximum = 123,
Minimum = 123
};
Properties
Maximum
The maximum setup for an axis display range.
public double? Maximum { get; set; }
Property Value
Remarks
Minimum
The minimum setup for an axis display range.
public double? Minimum { get; set; }