Class CfnAnalysis.HeatMapSortConfigurationProperty
The sort configuration of a heat map.
Inheritance
Namespace: Amazon.CDK.AWS.QuickSight
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class HeatMapSortConfigurationProperty : Object, CfnAnalysis.IHeatMapSortConfigurationProperty
Syntax (vb)
Public Class HeatMapSortConfigurationProperty
Inherits Object
Implements CfnAnalysis.IHeatMapSortConfigurationProperty
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 heatMapSortConfigurationProperty = new HeatMapSortConfigurationProperty {
HeatMapColumnItemsLimitConfiguration = new ItemsLimitConfigurationProperty {
ItemsLimit = 123,
OtherCategories = "otherCategories"
},
HeatMapColumnSort = new [] { new FieldSortOptionsProperty {
ColumnSort = new ColumnSortProperty {
Direction = "direction",
SortBy = new ColumnIdentifierProperty {
ColumnName = "columnName",
DataSetIdentifier = "dataSetIdentifier"
},
// the properties below are optional
AggregationFunction = new AggregationFunctionProperty {
AttributeAggregationFunction = new AttributeAggregationFunctionProperty {
SimpleAttributeAggregation = "simpleAttributeAggregation",
ValueForMultipleValues = "valueForMultipleValues"
},
CategoricalAggregationFunction = "categoricalAggregationFunction",
DateAggregationFunction = "dateAggregationFunction",
NumericalAggregationFunction = new NumericalAggregationFunctionProperty {
PercentileAggregation = new PercentileAggregationProperty {
PercentileValue = 123
},
SimpleNumericalAggregation = "simpleNumericalAggregation"
}
}
},
FieldSort = new FieldSortProperty {
Direction = "direction",
FieldId = "fieldId"
}
} },
HeatMapRowItemsLimitConfiguration = new ItemsLimitConfigurationProperty {
ItemsLimit = 123,
OtherCategories = "otherCategories"
},
HeatMapRowSort = new [] { new FieldSortOptionsProperty {
ColumnSort = new ColumnSortProperty {
Direction = "direction",
SortBy = new ColumnIdentifierProperty {
ColumnName = "columnName",
DataSetIdentifier = "dataSetIdentifier"
},
// the properties below are optional
AggregationFunction = new AggregationFunctionProperty {
AttributeAggregationFunction = new AttributeAggregationFunctionProperty {
SimpleAttributeAggregation = "simpleAttributeAggregation",
ValueForMultipleValues = "valueForMultipleValues"
},
CategoricalAggregationFunction = "categoricalAggregationFunction",
DateAggregationFunction = "dateAggregationFunction",
NumericalAggregationFunction = new NumericalAggregationFunctionProperty {
PercentileAggregation = new PercentileAggregationProperty {
PercentileValue = 123
},
SimpleNumericalAggregation = "simpleNumericalAggregation"
}
}
},
FieldSort = new FieldSortProperty {
Direction = "direction",
FieldId = "fieldId"
}
} }
};
Synopsis
Constructors
Heat |
Properties
Heat |
The limit on the number of columns that are displayed in a heat map. |
Heat |
The column sort configuration for heat map for columns that aren't a part of a field well. |
Heat |
The limit on the number of rows that are displayed in a heat map. |
Heat |
The field sort configuration of the rows fields. |
Constructors
HeatMapSortConfigurationProperty()
public HeatMapSortConfigurationProperty()
Properties
HeatMapColumnItemsLimitConfiguration
The limit on the number of columns that are displayed in a heat map.
public object HeatMapColumnItemsLimitConfiguration { get; set; }
Property Value
System.
Remarks
HeatMapColumnSort
The column sort configuration for heat map for columns that aren't a part of a field well.
public object HeatMapColumnSort { get; set; }
Property Value
System.
Remarks
HeatMapRowItemsLimitConfiguration
The limit on the number of rows that are displayed in a heat map.
public object HeatMapRowItemsLimitConfiguration { get; set; }
Property Value
System.
Remarks
HeatMapRowSort
The field sort configuration of the rows fields.
public object HeatMapRowSort { get; set; }
Property Value
System.