Class CfnAnalysis.ReferenceLineDataConfigurationProperty
The data configuration of the reference line.
Inheritance
Namespace: Amazon.CDK.AWS.QuickSight
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class ReferenceLineDataConfigurationProperty : Object, CfnAnalysis.IReferenceLineDataConfigurationProperty
Syntax (vb)
Public Class ReferenceLineDataConfigurationProperty
Inherits Object
Implements CfnAnalysis.IReferenceLineDataConfigurationProperty
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 referenceLineDataConfigurationProperty = new ReferenceLineDataConfigurationProperty {
AxisBinding = "axisBinding",
DynamicConfiguration = new ReferenceLineDynamicDataConfigurationProperty {
Calculation = new NumericalAggregationFunctionProperty {
PercentileAggregation = new PercentileAggregationProperty {
PercentileValue = 123
},
SimpleNumericalAggregation = "simpleNumericalAggregation"
},
Column = new ColumnIdentifierProperty {
ColumnName = "columnName",
DataSetIdentifier = "dataSetIdentifier"
},
// the properties below are optional
MeasureAggregationFunction = new AggregationFunctionProperty {
AttributeAggregationFunction = new AttributeAggregationFunctionProperty {
SimpleAttributeAggregation = "simpleAttributeAggregation",
ValueForMultipleValues = "valueForMultipleValues"
},
CategoricalAggregationFunction = "categoricalAggregationFunction",
DateAggregationFunction = "dateAggregationFunction",
NumericalAggregationFunction = new NumericalAggregationFunctionProperty {
PercentileAggregation = new PercentileAggregationProperty {
PercentileValue = 123
},
SimpleNumericalAggregation = "simpleNumericalAggregation"
}
}
},
SeriesType = "seriesType",
StaticConfiguration = new ReferenceLineStaticDataConfigurationProperty {
Value = 123
}
};
Synopsis
Constructors
Reference |
Properties
Axis |
The axis binding type of the reference line. Choose one of the following options:. |
Dynamic |
The dynamic configuration of the reference line data configuration. |
Series |
The series type of the reference line data configuration. Choose one of the following options:. |
Static |
The static data configuration of the reference line data configuration. |
Constructors
ReferenceLineDataConfigurationProperty()
public ReferenceLineDataConfigurationProperty()
Properties
AxisBinding
The axis binding type of the reference line. Choose one of the following options:.
public string AxisBinding { get; set; }
Property Value
System.
Remarks
DynamicConfiguration
The dynamic configuration of the reference line data configuration.
public object DynamicConfiguration { get; set; }
Property Value
System.
Remarks
SeriesType
The series type of the reference line data configuration. Choose one of the following options:.
public string SeriesType { get; set; }
Property Value
System.
Remarks
StaticConfiguration
The static data configuration of the reference line data configuration.
public object StaticConfiguration { get; set; }
Property Value
System.