interface ReferenceLineDataConfigurationProperty
Language | Type name |
---|---|
.NET | Amazon.CDK.AWS.QuickSight.CfnTemplate.ReferenceLineDataConfigurationProperty |
Java | software.amazon.awscdk.services.quicksight.CfnTemplate.ReferenceLineDataConfigurationProperty |
Python | aws_cdk.aws_quicksight.CfnTemplate.ReferenceLineDataConfigurationProperty |
TypeScript | @aws-cdk/aws-quicksight » CfnTemplate » ReferenceLineDataConfigurationProperty |
The data configuration of the reference line.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import * as quicksight from '@aws-cdk/aws-quicksight';
const referenceLineDataConfigurationProperty: quicksight.CfnTemplate.ReferenceLineDataConfigurationProperty = {
axisBinding: 'axisBinding',
dynamicConfiguration: {
calculation: {
percentileAggregation: {
percentileValue: 123,
},
simpleNumericalAggregation: 'simpleNumericalAggregation',
},
column: {
columnName: 'columnName',
dataSetIdentifier: 'dataSetIdentifier',
},
measureAggregationFunction: {
categoricalAggregationFunction: 'categoricalAggregationFunction',
dateAggregationFunction: 'dateAggregationFunction',
numericalAggregationFunction: {
percentileAggregation: {
percentileValue: 123,
},
simpleNumericalAggregation: 'simpleNumericalAggregation',
},
},
},
staticConfiguration: {
value: 123,
},
};
Properties
Name | Type | Description |
---|---|---|
axis | string | The axis binding type of the reference line. Choose one of the following options:. |
dynamic | IResolvable | Reference | The dynamic configuration of the reference line data configuration. |
static | IResolvable | Reference | The static data configuration of the reference line data configuration. |
axisBinding?
Type:
string
(optional)
The axis binding type of the reference line. Choose one of the following options:.
- PrimaryY
- SecondaryY
dynamicConfiguration?
Type:
IResolvable
|
Reference
(optional)
The dynamic configuration of the reference line data configuration.
staticConfiguration?
Type:
IResolvable
|
Reference
(optional)
The static data configuration of the reference line data configuration.