Class CfnDashboard.SmallMultiplesAxisPropertiesProperty
Configures the properties of a chart's axes that are used by small multiples panels.
Inherited Members
Namespace: Amazon.CDK.AWS.QuickSight
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnDashboard.SmallMultiplesAxisPropertiesProperty : CfnDashboard.ISmallMultiplesAxisPropertiesProperty
Syntax (vb)
Public Class CfnDashboard.SmallMultiplesAxisPropertiesProperty Implements CfnDashboard.ISmallMultiplesAxisPropertiesProperty
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 smallMultiplesAxisPropertiesProperty = new SmallMultiplesAxisPropertiesProperty {
Placement = "placement",
Scale = "scale"
};
Synopsis
Constructors
| SmallMultiplesAxisPropertiesProperty() | Configures the properties of a chart's axes that are used by small multiples panels. |
Properties
| Placement | Defines the placement of the axis. |
| Scale | Determines whether scale of the axes are shared or independent. |
Constructors
SmallMultiplesAxisPropertiesProperty()
Configures the properties of a chart's axes that are used by small multiples panels.
public SmallMultiplesAxisPropertiesProperty()
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 smallMultiplesAxisPropertiesProperty = new SmallMultiplesAxisPropertiesProperty {
Placement = "placement",
Scale = "scale"
};
Properties
Placement
Defines the placement of the axis.
public string? Placement { get; set; }
Property Value
Remarks
By default, axes are rendered OUTSIDE of the panels. Axes with INDEPENDENT scale are rendered INSIDE the panels.
Scale
Determines whether scale of the axes are shared or independent.
public string? Scale { get; set; }