@if ( indicator(); as indicator ) { {{ indicator.code }} {{ indicator.name }}
{{'IndicatorApp.Current' | translate: {Default: 'Current'} }}
{{(indicator.data?.CURRENT | number:'1.0-1' | replaceNullWithText:'-' )!}}
{{ 'IndicatorApp.MOM' | translate: {Default: 'MOM'} }}
arrow_drop_up arrow_drop_down {{(indicator.data?.MOM | percent:'0.2-2' | replaceNullWithText:'-' )!}}
{{'IndicatorApp.YTD' | translate: {Default: 'YTD'} }}
{{(indicator.data?.YTD | number:'1.0-1' | replaceNullWithText:'-' )!}}
{{ 'IndicatorApp.YOY' | translate: {Default: 'YOY'} }}
arrow_drop_up arrow_drop_down {{(indicator.data?.YOY | percent:'0.2-2' | replaceNullWithText:'-' )!}}
@for (dataSettings of dataSettings$ | async; track dataSettings.id) {
@for (p of PERIODS; track p.name) { {{p.name}} }
}
{{ 'IndicatorApp.BusinessCaliber' | translate: {Default: 'Business Caliber'} }}
{{ indicator.business }}
@if (freeDimensions$ | async; as freeDimensions) {
{{ 'IndicatorApp.FreeDimensions' | translate: {Default: 'Free Dimensions'} }}
@for (item of freeDimensions; track item.dimension.dimension) { }
} @if (drillDimensions(); as drillDimensions) {
{{ 'IndicatorApp.DrillDown' | translate: {Default: 'Drill Down'} }}
@for (drill of drillDimensions; track drill.id; let i = $index) { {{drill.period}} }
}
{{ 'IndicatorApp.Comments' | translate: {Default: 'Comments'} }}
{{comment.prompt}}
@if (isModeler()) {
{{ 'IndicatorApp.IsPeriodRelated' | translate: {Default: 'Period Related'} }}
}
{{comment.content}}
@if (isModeler()) { }
{{ comment.options?.periodCaption || comment.options?.period }}
}