Class CfnTemplatePropsMixin.NumericAxisOptionsProperty
The options for an axis with a numeric field.
Implements
Inherited Members
Namespace: Amazon.CDK.Mixins.Preview.AWS.QuickSight.Mixins
Assembly: Amazon.CDK.Mixins.Preview.dll
Syntax (csharp)
public class CfnTemplatePropsMixin.NumericAxisOptionsProperty : CfnTemplatePropsMixin.INumericAxisOptionsProperty
Syntax (vb)
Public Class CfnTemplatePropsMixin.NumericAxisOptionsProperty Implements CfnTemplatePropsMixin.INumericAxisOptionsProperty
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.Mixins.Preview.AWS.QuickSight.Mixins;
var dataDriven;
var numericAxisOptionsProperty = new NumericAxisOptionsProperty {
Range = new AxisDisplayRangeProperty {
DataDriven = dataDriven,
MinMax = new AxisDisplayMinMaxRangeProperty {
Maximum = 123,
Minimum = 123
}
},
Scale = new AxisScaleProperty {
Linear = new AxisLinearScaleProperty {
StepCount = 123,
StepSize = 123
},
Logarithmic = new AxisLogarithmicScaleProperty {
Base = 123
}
}
};
Synopsis
Constructors
| NumericAxisOptionsProperty() | The options for an axis with a numeric field. |
Properties
| Range | The range setup of a numeric axis. |
| Scale | The scale setup of a numeric axis. |
Constructors
NumericAxisOptionsProperty()
The options for an axis with a numeric field.
public NumericAxisOptionsProperty()
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.Mixins.Preview.AWS.QuickSight.Mixins;
var dataDriven;
var numericAxisOptionsProperty = new NumericAxisOptionsProperty {
Range = new AxisDisplayRangeProperty {
DataDriven = dataDriven,
MinMax = new AxisDisplayMinMaxRangeProperty {
Maximum = 123,
Minimum = 123
}
},
Scale = new AxisScaleProperty {
Linear = new AxisLinearScaleProperty {
StepCount = 123,
StepSize = 123
},
Logarithmic = new AxisLogarithmicScaleProperty {
Base = 123
}
}
};
Properties
Range
The range setup of a numeric axis.
public object? Range { get; set; }
Property Value
Remarks
Scale
The scale setup of a numeric axis.
public object? Scale { get; set; }