I’m working on creating serverless configs for deployment of our Dashboards. We have some calculated fields configured as such:
ChartConfiguration:
FieldWells:
PivotTableAggregatedFieldWells:
Values:
- NumericalMeasureField:
FieldId: "Total"
Column:
ColumnName: "price"
DataSetIdentifier: priceDetails
AggregationFunction:
SimpleNumericalAggregation: SUM
- NumericalMeasureField:
FieldId: "Average"
Column:
ColumnName: "price"
DataSetIdentifier: priceDetails
AggregationFunction:
SimpleNumericalAggregation: AVERAGE
- NumericalMeasureField:
FieldId: "Count"
Column:
ColumnName: "price"
DataSetIdentifier: priceDetails
AggregationFunction:
SimpleNumericalAggregation: COUNT
In our chart “price” shows up as the column header for all 3 columns (it is the name of the column in our DataSet). I see in the web console we can change the “value name” of the column headers in the Analysis.
How can I do this via serverless so that the column headers can be priceTotal , priceAverage , priceCount in the analysis or when this is used in a Dashboard.
Thanks.