axidio-styleguide-library1-v2 0.2.8 → 0.2.9

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -3035,321 +3035,259 @@ class GuageChartComponent extends ComponentUniqueId {
3035
3035
  };
3036
3036
  }
3037
3037
  get isAlertEnabled() {
3038
- return this.chartConfiguration?.headerMenuOptions?.some(option => option.id === 'editAlert');
3038
+ return this.chartConfiguration?.headerMenuOptions?.some((option) => option.id === 'editAlert');
3039
3039
  }
3040
+ ngOnInit() { }
3040
3041
  ngOnChanges() {
3041
- let self = this;
3042
- d3.select('#' + self.uniqueId).remove();
3042
+ d3.select('#' + this.uniqueId).remove();
3043
3043
  this.initializeLineChart();
3044
3044
  }
3045
3045
  onResized(event) {
3046
- let self = this;
3047
- d3.select('#' + self.uniqueId).remove();
3046
+ d3.select('#' + this.uniqueId).remove();
3048
3047
  this.initializeLineChart();
3049
3048
  }
3050
- ngOnInit() { }
3049
+ /** -------------------------------
3050
+ * Main Initialization Function
3051
+ * ------------------------------*/
3051
3052
  initializeLineChart() {
3052
- var self = this;
3053
- let data = [];
3054
- let metaData = null;
3055
- let colorMaps = [];
3056
- let angleValue = [];
3057
- let data_ready = [];
3058
- let labelArray = [];
3059
- let colorType = null;
3060
- let isria = this.customChartConfiguration.isRia;
3061
- for (var i in this.defaultConfiguration) {
3062
- this.chartConfiguration[i] = ChartHelper.getValueByConfigurationType(i, this.defaultConfiguration, this.customChartConfiguration);
3063
- }
3064
- data = this.chartData.data;
3065
- metaData = this.chartData.metaData;
3066
- colorType = metaData.colorType;
3067
- if (colorType == 'low') {
3068
- colorMaps = this.chartConfiguration.low_colorMap;
3069
- }
3070
- else {
3071
- colorMaps = this.chartConfiguration.high_colorMap;
3053
+ const self = this;
3054
+ const { data, metaData } = this.chartData;
3055
+ const isRia = this.customChartConfiguration.isRia;
3056
+ this.setupChartConfiguration();
3057
+ const { colorMaps } = this.getColorMap(metaData);
3058
+ this.configureDataType(metaData);
3059
+ const data_ready = this.calculateDataReady(data);
3060
+ const { chartContainer, guagecontainer, width, height } = this.setupContainer();
3061
+ this.isHeaderVisible =
3062
+ this.chartConfiguration.isHeaderVisible ?? this.isHeaderVisible;
3063
+ const svg = this.createSvg(chartContainer, width, height);
3064
+ const radius = this.adjustDimensionsAndRadius(width, height);
3065
+ const angleValue = this.computeAngles(data_ready, data);
3066
+ const arc = this.createArc(radius, angleValue, data_ready);
3067
+ this.drawGaugeArcs(svg, arc, data_ready, colorMaps, metaData, isRia, data);
3068
+ this.drawPointer(svg, radius, metaData, data);
3069
+ this.drawLabels(svg, radius, data_ready, data, metaData);
3070
+ this.drawCenterTexts(svg, radius, metaData);
3071
+ this.centerSvg(svg, chartContainer, width, height);
3072
+ }
3073
+ /** -------------------------------
3074
+ * Modular Helper Functions
3075
+ * ------------------------------*/
3076
+ setupChartConfiguration() {
3077
+ for (const key in this.defaultConfiguration) {
3078
+ this.chartConfiguration[key] = ChartHelper.getValueByConfigurationType(key, this.defaultConfiguration, this.customChartConfiguration);
3072
3079
  }
3080
+ }
3081
+ getColorMap(metaData) {
3082
+ const colorType = metaData.colorType;
3083
+ const colorMaps = colorType === 'low'
3084
+ ? this.chartConfiguration.low_colorMap
3085
+ : this.chartConfiguration.high_colorMap;
3086
+ return { colorMaps };
3087
+ }
3088
+ configureDataType(metaData) {
3073
3089
  if (metaData.dataType) {
3074
3090
  this.dataType = metaData.dataType;
3075
- if (this.dataType == 'USD') {
3091
+ if (this.dataType === 'USD') {
3076
3092
  this.datatype_status = true;
3077
3093
  this.dataType = '$ ';
3078
3094
  }
3079
3095
  }
3080
- data.map(function (dataUnit, i) {
3096
+ }
3097
+ calculateDataReady(data) {
3098
+ const data_ready = [];
3099
+ data.forEach((_, i) => {
3081
3100
  if (i < data.length - 1) {
3082
- let diff = data[i + 1] - data[i];
3083
- data_ready.push(diff);
3101
+ data_ready.push(data[i + 1] - data[i]);
3084
3102
  }
3085
3103
  });
3086
- var chartContainer = d3.select(this.containerElt.nativeElement);
3087
- var guagecontainer = d3.select(this.guagecontainerElt.nativeElement);
3088
- var margin = this.chartConfiguration.margin;
3089
- var width = parseInt(chartContainer.style('width')) - margin.left - margin.right;
3090
- var height = parseInt(guagecontainer.style('height')) -
3104
+ return data_ready;
3105
+ }
3106
+ setupContainer() {
3107
+ const chartContainer = d3.select(this.containerElt.nativeElement);
3108
+ const guagecontainer = d3.select(this.guagecontainerElt.nativeElement);
3109
+ const margin = this.chartConfiguration.margin;
3110
+ const width = parseInt(chartContainer.style('width')) - margin.left - margin.right;
3111
+ const height = parseInt(guagecontainer.style('height')) -
3091
3112
  margin.top -
3092
3113
  margin.bottom -
3093
- 56; //chart header height
3094
- if (this.chartConfiguration.isHeaderVisible != undefined)
3095
- this.isHeaderVisible = this.chartConfiguration.isHeaderVisible;
3096
- var svg = chartContainer
3114
+ 56; // chart header height
3115
+ return { chartContainer, guagecontainer, width, height };
3116
+ }
3117
+ createSvg(chartContainer, width, height) {
3118
+ const margin = this.chartConfiguration.margin;
3119
+ return chartContainer
3097
3120
  .append('svg')
3098
- .attr('id', self.uniqueId)
3121
+ .attr('id', this.uniqueId)
3099
3122
  .attr('width', width + margin.left + margin.right)
3100
3123
  .attr('height', height + margin.top + margin.bottom)
3101
3124
  .call(ChartHelper.responsivefy)
3102
3125
  .append('g');
3103
- var radius = Math.min(width, height) / 2;
3126
+ }
3127
+ adjustDimensionsAndRadius(width, height) {
3128
+ const radius = Math.min(width, height) / 2;
3104
3129
  if (this.chartConfiguration.isDrilldownChart) {
3105
3130
  this.chartConfiguration.currentValueWidthScaleFactor += 40;
3106
3131
  this.chartConfiguration.currentValueHeightScaleFactor += 20;
3107
3132
  }
3108
- else {
3109
- if (window.innerWidth > 1400) {
3110
- this.chartConfiguration.currentValueHeightScaleFactor += 15;
3111
- this.chartConfiguration.currentValueWidthScaleFactor *= 2;
3112
- }
3113
- }
3114
- let topTextPosition = radius / 2 - 10;
3115
- let midTextPosition = topTextPosition + this.chartConfiguration.currentValueHeightScaleFactor;
3116
- let bottomTextPosition = midTextPosition + this.chartConfiguration.currentValueHeightScaleFactor;
3117
- var data_length = data.length;
3118
- function deg2rad(deg) {
3119
- return (deg * Math.PI) / 180;
3120
- }
3121
- let tempArray = [];
3122
- let total = 0;
3123
- data_ready.map(function (unit) {
3124
- total += unit;
3125
- });
3126
- data_ready.map(function (unit, i) {
3127
- var angle = (unit / total) * 180;
3128
- if (i === 0) {
3129
- tempArray.push(angle);
3130
- }
3131
- else {
3132
- let currentAngle = tempArray[i - 1] + angle;
3133
- tempArray.push(currentAngle);
3134
- }
3133
+ else if (window.innerWidth > 1400) {
3134
+ this.chartConfiguration.currentValueHeightScaleFactor += 15;
3135
+ this.chartConfiguration.currentValueWidthScaleFactor *= 2;
3136
+ }
3137
+ return radius;
3138
+ }
3139
+ computeAngles(data_ready, data) {
3140
+ const total = data_ready.reduce((sum, val) => sum + val, 0);
3141
+ const tempArray = [];
3142
+ data_ready.forEach((unit, i) => {
3143
+ const angle = (unit / total) * 180;
3144
+ tempArray.push(i === 0 ? angle : tempArray[i - 1] + angle);
3135
3145
  });
3136
- angleValue = tempArray;
3137
- var arc = d3
3146
+ return tempArray;
3147
+ }
3148
+ createArc(radius, angleValue, data_ready) {
3149
+ const self = this;
3150
+ const deg2rad = (deg) => (deg * Math.PI) / 180;
3151
+ return d3
3138
3152
  .arc()
3139
3153
  .innerRadius(radius -
3140
3154
  self.chartConfiguration.ringWidth -
3141
3155
  self.chartConfiguration.ringInset)
3142
3156
  .outerRadius(radius)
3143
- .startAngle(function (d, i) {
3144
- var ratio;
3145
- if (i === 0) {
3146
- ratio = self.chartConfiguration.minAngle;
3147
- }
3148
- else {
3149
- ratio = self.chartConfiguration.minAngle + angleValue[i - 1];
3150
- }
3151
- return deg2rad(ratio);
3152
- })
3153
- .endAngle(function (d, i) {
3154
- var ratio;
3155
- if (i === data_ready.length - 1) {
3156
- ratio = self.chartConfiguration.maxAngle;
3157
- }
3158
- else {
3159
- ratio = self.chartConfiguration.minAngle + angleValue[i];
3160
- }
3161
- return deg2rad(ratio);
3162
- });
3163
- function centerTranslation() {
3164
- return 'translate(' + radius + ',' + radius + ')';
3165
- }
3166
- var centerTx = centerTranslation();
3167
- var tickData = d3
3168
- .range(self.chartConfiguration.majorTicks)
3169
- .map(function (i) {
3170
- return 1 / self.chartConfiguration.majorTicks;
3171
- });
3172
- var arcs = svg.append('g').attr('class', 'arc').attr('transform', centerTx);
3157
+ .startAngle((_, i) => deg2rad(i === 0
3158
+ ? self.chartConfiguration.minAngle
3159
+ : self.chartConfiguration.minAngle + angleValue[i - 1]))
3160
+ .endAngle((_, i) => deg2rad(i === data_ready.length - 1
3161
+ ? self.chartConfiguration.maxAngle
3162
+ : self.chartConfiguration.minAngle + angleValue[i]));
3163
+ }
3164
+ drawGaugeArcs(svg, arc, data_ready, colorMaps, metaData, isRia, data) {
3165
+ const self = this;
3166
+ const arcs = svg
3167
+ .append('g')
3168
+ .attr('class', 'arc')
3169
+ .attr('transform', this.centerTranslation(arc.outerRadius()()));
3173
3170
  arcs
3174
3171
  .selectAll('path')
3175
3172
  .data(data_ready)
3176
3173
  .enter()
3177
3174
  .append('path')
3178
- .on('click', function (d) {
3179
- if (!metaData.hasDrillDown || metaData.currentValue == 0) {
3175
+ .attr('fill', (_, i) => colorMaps[i])
3176
+ .style('cursor', () => metaData.currentValue > 0 && metaData.hasDrillDown && !isRia
3177
+ ? 'pointer'
3178
+ : 'default')
3179
+ .attr('d', arc)
3180
+ .on('click', (d) => {
3181
+ if (!metaData.hasDrillDown || metaData.currentValue === 0)
3180
3182
  return;
3181
- }
3182
- let range = getRange(d);
3183
+ const range = `${data[0]} and ${data[data.length - 1]}`;
3183
3184
  self.handleClick(range);
3184
- })
3185
- .attr('fill', function (d, i) {
3186
- return colorMaps[i];
3187
- })
3188
- .attr('id', function (d, i) {
3189
- return colorMaps[i];
3190
- })
3191
- .attr('d', arc)
3192
- // .style('cursor', 'pointer');
3193
- .style('cursor', function (d) {
3194
- if (metaData.currentValue > 0 && metaData.hasDrillDown && !isria)
3195
- return 'pointer';
3196
- else
3197
- return 'default';
3198
3185
  });
3199
- let getRange = function (d) {
3200
- let index = data_ready.indexOf(d);
3201
- return data[0] + ' and ' + data[data.length - 1];
3202
- };
3203
- let pointerHeadLength = Math.round(radius * self.chartConfiguration.pointerHeadLengthPercent);
3204
- var lineData = [
3186
+ }
3187
+ drawPointer(svg, radius, metaData, data) {
3188
+ const self = this;
3189
+ const pointerHeadLength = Math.round(radius * self.chartConfiguration.pointerHeadLengthPercent);
3190
+ const lineData = [
3205
3191
  [self.chartConfiguration.pointerWidth / 2, 0],
3206
3192
  [0, -pointerHeadLength],
3207
3193
  [-(self.chartConfiguration.pointerWidth / 2), 0],
3208
3194
  [0, self.chartConfiguration.pointerTailLength],
3209
3195
  [self.chartConfiguration.pointerWidth / 2, 0],
3210
3196
  ];
3211
- var pointerLine = d3.line();
3212
- var pg = svg
3197
+ const pointerLine = d3.line();
3198
+ const pg = svg
3213
3199
  .append('g')
3214
3200
  .data([lineData])
3215
3201
  .attr('class', 'pointer')
3216
- .attr('transform', centerTx);
3217
- var pointerValue = metaData.currentValue - data[0];
3218
- var range = data[data_length - 1] - data[0];
3219
- var pointerAngle = self.chartConfiguration.minAngle + (pointerValue / range) * 180;
3202
+ .attr('transform', this.centerTranslation(radius));
3203
+ const pointerValue = metaData.currentValue - data[0];
3204
+ const range = data[data.length - 1] - data[0];
3205
+ const pointerAngle = self.chartConfiguration.minAngle + (pointerValue / range) * 180;
3220
3206
  pg.append('path')
3221
3207
  .attr('d', pointerLine)
3222
3208
  .attr('fill', self.chartConfiguration.pointerColor)
3223
- .attr('transform', 'rotate(' +
3224
- pointerAngle +
3225
- ') translate(0,' +
3226
- (-radius + self.chartConfiguration.ringWidth + pointerHeadLength) +
3227
- ')');
3228
- var lg = svg.append('g').attr('class', 'label').attr('transform', centerTx);
3229
- let labelArrayTemp = [{ name: data[0], value: 0 }];
3230
- let count = 0;
3231
- data_ready.map(function (dataUnit, i) {
3232
- count += dataUnit;
3233
- let temp = { name: data[i + 1], value: count };
3234
- labelArrayTemp.push(temp);
3235
- });
3236
- labelArray = labelArrayTemp;
3209
+ .attr('transform', `rotate(${pointerAngle}) translate(0,${-radius + self.chartConfiguration.ringWidth + pointerHeadLength})`);
3210
+ }
3211
+ drawLabels(svg, radius, data_ready, data, metaData) {
3212
+ const self = this;
3213
+ const range = data[data.length - 1] - data[0];
3214
+ const labelArray = this.buildLabelArray(data_ready, data);
3215
+ const lg = svg
3216
+ .append('g')
3217
+ .attr('class', 'label')
3218
+ .attr('transform', this.centerTranslation(radius));
3237
3219
  lg.selectAll('.bubble')
3238
3220
  .data(labelArray)
3239
3221
  .enter()
3240
3222
  .append('g')
3241
- .attr('transform', function (d) {
3242
- var newAngle = self.chartConfiguration.minAngle + (d.value / range) * 180;
3243
- return ('rotate(' +
3244
- newAngle +
3245
- ') translate(0,' +
3246
- (self.chartConfiguration.labelInset - radius - 20) +
3247
- ')');
3248
- })
3249
- .append('g')
3250
- .attr('transform', function (d, i) {
3251
- var newAngle = self.chartConfiguration.minAngle + (d.value / range) * 180;
3252
- if (i == 0 && self.chartConfiguration.isValueLableAdjust) {
3253
- return 'rotate(' + (0 - newAngle) + ') translate(-27,0)';
3254
- }
3255
- if (i == labelArray.length - 1 &&
3256
- self.chartConfiguration.isValueLableAdjust) {
3257
- return 'rotate(' + (0 - newAngle) + ') translate(-15,0)';
3258
- }
3259
- return 'rotate(' + (0 - newAngle) + ') translate(-17,0)';
3223
+ .attr('transform', (d) => {
3224
+ const newAngle = self.chartConfiguration.minAngle + (d.value / range) * 180;
3225
+ return `rotate(${newAngle}) translate(0,${self.chartConfiguration.labelInset - radius - 20})`;
3260
3226
  })
3261
3227
  .append('text')
3262
- .attr('style', function (d) {
3263
- if (window.innerWidth < 1400)
3264
- return 'font-size: ' + '12px' + '; font-weight:' + '600;';
3265
- else
3266
- return 'font-size: ' + '14px' + '; font-weight:' + '600;';
3267
- })
3268
3228
  .attr('fill', 'var(--chart-text-color)')
3269
- .text(function (d) {
3270
- if (metaData.dataType) {
3271
- return d.name + metaData.dataType;
3272
- }
3273
- return d.name;
3229
+ .style('font-size', window.innerWidth < 1400 ? '12px' : '14px')
3230
+ .style('font-weight', '600')
3231
+ .text((d) => (metaData.dataType ? d.name + metaData.dataType : d.name));
3232
+ }
3233
+ buildLabelArray(data_ready, data) {
3234
+ const labelArray = [{ name: data[0], value: 0 }];
3235
+ let count = 0;
3236
+ data_ready.forEach((unit, i) => {
3237
+ count += unit;
3238
+ labelArray.push({ name: data[i + 1], value: count });
3274
3239
  });
3240
+ return labelArray;
3241
+ }
3242
+ drawCenterTexts(svg, radius, metaData) {
3243
+ const self = this;
3244
+ const top = radius / 2 - 10;
3245
+ const mid = top + self.chartConfiguration.currentValueHeightScaleFactor;
3246
+ const bottom = mid + self.chartConfiguration.currentValueHeightScaleFactor;
3247
+ // current value
3275
3248
  svg
3276
3249
  .append('foreignObject')
3277
- .attr('transform', 'translate(' +
3278
- (radius - this.chartConfiguration.currentValueWidthScaleFactor / 2) +
3279
- ',' +
3280
- topTextPosition +
3281
- ')')
3250
+ .attr('transform', `translate(${radius - this.chartConfiguration.currentValueWidthScaleFactor / 2},${top})`)
3282
3251
  .attr('width', this.chartConfiguration.currentValueWidthScaleFactor + 8)
3283
3252
  .attr('height', this.chartConfiguration.currentValueHeightScaleFactor)
3284
3253
  .append('xhtml:div')
3285
3254
  .attr('class', 'value-display')
3286
- .style('height', this.chartConfiguration.currentValueHeightScaleFactor + 10 + 'px')
3287
- .style('font-size', function () {
3288
- if (window.innerWidth > 1500) {
3289
- self.chartConfiguration.currentValueHeightScaleFactor - 25 + 'px';
3290
- }
3291
- else {
3292
- self.chartConfiguration.currentValueHeightScaleFactor - 15 + 'px';
3293
- }
3294
- })
3295
3255
  .html(metaData.currentValue + metaData.dataType);
3256
+ // status
3296
3257
  if (metaData.status) {
3297
- let widthTemp = metaData.status.length > 4 ? 210 : 120;
3258
+ const widthTemp = metaData.status.length > 4 ? 210 : 120;
3298
3259
  svg
3299
3260
  .append('foreignObject')
3300
- .attr('transform', 'translate(' + (radius - widthTemp / 2) + ',' + midTextPosition + ')')
3261
+ .attr('transform', `translate(${radius - widthTemp / 2},${mid})`)
3301
3262
  .attr('width', widthTemp)
3302
- .attr('height', this.chartConfiguration.currentValueHeightScaleFactor + 10)
3303
3263
  .append('xhtml:div')
3304
3264
  .attr('class', 'status-display')
3305
- .style('font-size', this.chartConfiguration.currentValueHeightScaleFactor - 25 + 'px')
3306
3265
  .html(metaData.status);
3307
3266
  }
3267
+ // date range
3308
3268
  svg
3309
3269
  .append('foreignObject')
3310
- .attr('transform', 'translate(' + (radius - 105) + ',' + bottomTextPosition + ')')
3270
+ .attr('transform', `translate(${radius - 105},${bottom})`)
3311
3271
  .attr('width', 210)
3312
- .attr('height', this.chartConfiguration.currentValueHeightScaleFactor)
3313
3272
  .append('xhtml:div')
3314
3273
  .attr('class', 'daterange-display')
3315
- .style('font-size', function () {
3316
- if (self.chartConfiguration.isDrilldownChart) {
3317
- {
3318
- if (window.innerWidth < 1400)
3319
- return '14px';
3320
- else
3321
- return '18px';
3322
- }
3323
- }
3324
- else {
3325
- if (window.innerWidth < 1400)
3326
- return '14px';
3327
- else
3328
- return '18px';
3329
- }
3330
- })
3331
- .html(function () {
3332
- var desiredSize;
3333
- if (window.innerWidth < 1400)
3334
- desiredSize = '14px';
3335
- else
3336
- desiredSize = '18px';
3337
- if (metaData.dateRange)
3338
- return ('<span class="marginright-3"><i class="fa fa-calendar"></i></span><span> ' +
3339
- metaData.dateRange +
3340
- '</span>');
3341
- else
3342
- return '';
3343
- });
3344
- var containerMidWidth = parseInt(chartContainer.style('width')) / 2;
3345
- var nodeHalfWidth = svg.node().getBoundingClientRect().width / 2;
3346
- var updatedStartingPoint = containerMidWidth - nodeHalfWidth;
3347
- svg.attr('transform', 'translate(' +
3348
- (updatedStartingPoint + margin.left) +
3349
- ',' +
3350
- margin.top +
3351
- ')');
3352
- }
3274
+ .html(metaData.dateRange
3275
+ ? `<span class="marginright-3"><i class="fa fa-calendar"></i></span><span>${metaData.dateRange}</span>`
3276
+ : '');
3277
+ }
3278
+ centerTranslation(radius) {
3279
+ return `translate(${radius},${radius})`;
3280
+ }
3281
+ centerSvg(svg, chartContainer, width, height) {
3282
+ const margin = this.chartConfiguration.margin;
3283
+ const containerMidWidth = parseInt(chartContainer.style('width')) / 2;
3284
+ const nodeHalfWidth = svg.node().getBoundingClientRect().width / 2;
3285
+ const updatedStartingPoint = containerMidWidth - nodeHalfWidth;
3286
+ svg.attr('transform', `translate(${updatedStartingPoint + margin.left},${margin.top})`);
3287
+ }
3288
+ /** -------------------------------
3289
+ * Event Handlers
3290
+ * ------------------------------*/
3353
3291
  handleClick(d) {
3354
3292
  this.clickEvent.emit(d);
3355
3293
  }
@@ -9915,14 +9853,14 @@ class PlainTrendComponent extends ComponentUniqueId {
9915
9853
  }
9916
9854
  }
9917
9855
  static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: PlainTrendComponent, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
9918
- static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.12", type: PlainTrendComponent, selector: "lib-plain-trend", inputs: { chartData: "chartData", customChartConfiguration: "customChartConfiguration" }, outputs: { clickEvent: "clickEvent", headerMenuclickEvent: "headerMenuclickEvent" }, viewQueries: [{ propertyName: "containerElt", first: true, predicate: ["guagechartcontainer"], descendants: true, static: true }], usesInheritance: true, usesOnChanges: true, ngImport: i0, template: "<div #piecontainer class=\"lib-chart-wrapper\" style=\"background-color: var(--card-bg);\">\r\n <lib-chart-header-v1\r\n *ngIf=\"isHeaderVisible\"\r\n [title]=\"chartData.metaData.title\"\r\n [hasDrillDown]=\"chartData.metaData.hasDrillDown\"\r\n [isEditEnabled]=\"chartData.metaData.isEditEnabled\"\r\n [menuOptions]=\"chartConfiguration.headerMenuOptions\"\r\n [selectedKpiTooltop]=\"chartConfiguration.selectedKpiTooltop\"\r\n [isria]=\"customChartConfiguration.isRia\"\r\n [isAlertEnabled]=\"isAlertEnabled\"\r\n (menuOptionClickEvent)=\"handleHeaderMenuClick($event)\"\r\n ></lib-chart-header-v1>\r\n\r\n <ng-container *ngIf=\"chartConfiguration.isToggleVisible && !isHeaderVisible && chartData.data.value > 0\">\r\n <lib-chart-header-v2\r\n [chartData]=\"chartData\"\r\n [chartConfiguration]=\"chartConfiguration\"\r\n (clickEvent)=\"handleClick($event)\"\r\n ></lib-chart-header-v2>\r\n </ng-container>\r\n\r\n <div\r\n #guagechartcontainer\r\n id=\"trendchartcontainer\"\r\n class=\"lib-chart-svg trendcontainer\"\r\n [style.height]=\"chartConfiguration.svgHeight\"\r\n >\r\n <div\r\n class=\"central-content\"\r\n [ngClass]=\"{\r\n 'central-content-non-drilldown-sizes': isHeaderVisible,\r\n 'central-content-drilldown-sizes': !isHeaderVisible,\r\n 'lib-justify-content-space-around': chartData.data.bgColor,\r\n 'lib-justify-content-center': !chartData.data.bgColor\r\n }\"\r\n (click)=\"handleClick(chartData.data.daterange)\"\r\n >\r\n <span\r\n class=\"value-style\"\r\n [ngClass]=\"{\r\n 'value-style-non-drilldown': isHeaderVisible,\r\n 'value-style-drilldown': !isHeaderVisible\r\n }\"\r\n >\r\n {{ chartData.data.value | number: '1.0-2' }}\r\n </span>\r\n\r\n <span\r\n class=\"name-style\"\r\n [ngClass]=\"{\r\n 'name-style-non-drilldown': isHeaderVisible,\r\n 'name-style-drilldown': !isHeaderVisible\r\n }\"\r\n >\r\n {{ chartData.data.name }}\r\n </span>\r\n\r\n <div\r\n *ngIf=\"chartData.data.bgColor\"\r\n class=\"direction-panel\"\r\n [ngClass]=\"{\r\n 'direction-panel-non-drilldown': isHeaderVisible,\r\n 'direction-panel-drilldown': !isHeaderVisible\r\n }\"\r\n [style.backgroundColor]=\"chartData.data.bgColor\"\r\n >\r\n <ng-container [ngSwitch]=\"chartData.data.valueDirection\">\r\n <img *ngSwitchCase=\"1\" class=\"trend-img\" src=\"/assets/up-trend.png\" alt=\"up\" />\r\n <img *ngSwitchCase=\"0\" class=\"trend-img\" src=\"/assets/sameline-trend.png\" alt=\"same\" />\r\n <img *ngSwitchCase=\"-1\" class=\"trend-img\" src=\"/assets/down-trend.png\" alt=\"down\" />\r\n </ng-container>\r\n </div>\r\n </div>\r\n\r\n <div\r\n class=\"date-range\"\r\n [ngClass]=\"{ 'date-range-drilldown': !isHeaderVisible }\"\r\n >\r\n <i class=\"fa fa-calendar marginright-3\"></i>\r\n {{ chartData.data.daterange }}\r\n </div>\r\n </div>\r\n</div>\r\n", styles: [".trendcontainer{display:flex!important;justify-content:center;align-items:center;flex-direction:column;position:relative;top:0;width:100%;height:100%;padding:1rem;box-sizing:border-box}.central-content{background:#f0f0f0;display:flex;align-items:center;justify-content:center;position:relative;box-shadow:0 1px 2px #0000001a,0 3px 10px #0000004d;border-radius:8px;padding:.5rem 1rem;text-align:center;transition:all .3s ease-in-out;max-width:90%;flex-wrap:wrap}.central-content-non-drilldown-sizes{height:auto;min-width:150px}.central-content-drilldown-sizes{min-width:300px;height:auto}.value-style,.name-style{font-weight:600;margin:.5rem;color:var(--pph-text-color)}.value-style-non-drilldown,.name-style-non-drilldown{font-size:20px}.value-style-drilldown,.name-style-drilldown{font-size:48px}.direction-panel{border-radius:8px;margin-right:5px;display:flex;justify-content:center;align-items:center}.direction-panel-non-drilldown{width:45px;height:45px}.direction-panel-drilldown{width:80px;height:80px}.trend-img{transform:scale(1.25)}.date-range{margin-top:1rem;font-size:16px;text-align:center}@media (max-width: 1024px){.central-content-drilldown-sizes{min-width:250px}.value-style-drilldown,.name-style-drilldown{font-size:36px}}@media (max-width: 768px){.central-content{flex-direction:column}.value-style-drilldown,.name-style-drilldown{font-size:28px}.date-range{font-size:14px}}@media (max-width: 480px){.central-content{min-width:200px;padding:.5rem}.value-style,.name-style{font-size:18px}.direction-panel{width:40px;height:40px}.trend-img{transform:scale(1)}.date-range{font-size:12px}}\n", ".lib-chart-wrapper{width:100%;height:100%;font-family:system-ui,-apple-system,BlinkMacSystemFont,Segoe UI,Roboto;background:#fff 0% 0% no-repeat padding-box;position:relative}.lib-chart-wrapper-wo-shadow{width:100%;height:100%;font-family:system-ui,-apple-system,BlinkMacSystemFont,Segoe UI,Roboto}.lib-chart-wrapper:hover .chart-header-v1:not(.header-no-background){background-color:#2e3640}.lib-chart-wrapper:hover .chart-header-v1:not(.header-no-background) .chart-title{color:#fff}.lib-chart-svg{width:100%}.lib-chart-header{text-align:center;background-color:#052340;color:#fff;width:100%;height:17%;word-spacing:.5px;line-height:1.8;font-weight:700;padding-top:2%;letter-spacing:0;font-size:1.2em}.lib-donut-chart-footer{width:100%;text-align:right}.lib-donut-label-text{font-size:.9em;font-family:system-ui,-apple-system,BlinkMacSystemFont,Segoe UI,Roboto;font-weight:400;letter-spacing:0px;color:#000;opacity:1}.lib-donut-label-icon{display:inline-block;width:10px;height:10px;margin-right:20px;border-radius:3px}.lib-donut-label-item{font-weight:400;font-size:.85em;color:#2f2f2f}.lib-donut-justified-label-wrapper{width:100%;display:inline-block;text-align:center;list-style-type:none}.lib-donut-justified-label-item{font-weight:400;font-size:.85em;color:#2f2f2f;display:inline-block;text-align:left;padding:0 10px}.lib-donut-justified-label-icon{display:inline-block;width:10px;height:10px;margin-right:5px;border-radius:3px}.lib-no-background{background:none!important}.lib-display-hidden{display:none}.lib-ylabel-weeklyCharts{font-style:normal;font-variant:normal;font-weight:800;font-size:10px;line-height:12px;font-family:system-ui,-apple-system,BlinkMacSystemFont,Segoe UI,Roboto;letter-spacing:-.07px;text-transform:capitalize;color:#000}.lib-data-labels-weeklycharts{font-style:normal;font-variant:normal;font-weight:400;font-size:12px;line-height:14px;font-family:system-ui,-apple-system,BlinkMacSystemFont,Segoe UI,Roboto;letter-spacing:-.06px;color:#000}.lib-data-labels-angled-weeklycharts{font-style:normal;font-variant:normal;font-weight:800;font-size:9.5px;line-height:11px;font-family:system-ui,-apple-system,BlinkMacSystemFont,Segoe UI,Roboto;letter-spacing:.4px;text-anchor:start}.lib-xaxis-labels-texts-weeklycharts{font-style:normal;font-variant:normal;font-weight:800;font-size:10px;line-height:11px;letter-spacing:-.05px;fill:#000}.lib-xaxis-labels-texts-drilldown{font-family:system-ui,-apple-system,BlinkMacSystemFont,Segoe UI,Roboto;font-size:14px;letter-spacing:-1px;color:#000;opacity:1;text-transform:capitalize}.lib-white-space-nowrap{white-space:nowrap}.lib-xaxis-labels-texts-drilldown-alt{font-family:system-ui,-apple-system,BlinkMacSystemFont,Segoe UI,Roboto;font-size:10px;letter-spacing:0px;color:#000;opacity:1;text-transform:capitalize}.lib-yaxis-labels-texts-drilldown{font-family:system-ui,-apple-system,BlinkMacSystemFont,Segoe UI,Roboto;font-size:14px;letter-spacing:0px;color:#000!important;opacity:1}.lib-ylabel-drilldowncharts,.lib-xlabel-drilldowncharts{font-family:system-ui,-apple-system,BlinkMacSystemFont,Segoe UI,Roboto;font-size:16px;letter-spacing:-.1px;color:#000!important;opacity:1}.lib-donut-justified-label-icon-drilldown{display:inline-block;width:14px;height:14px;margin-right:10px;border-radius:50%}.marginright-2{margin-right:2%}.margintop-5{margin-top:5%}.width-100{width:100%}.float-right{float:right}.marginBottom-10{margin-bottom:10px}.header-alt{align-items:center;margin-bottom:10px}input::placeholder{font-size:20px;font-family:system-ui,-apple-system,BlinkMacSystemFont,Segoe UI,Roboto;letter-spacing:0px;color:#000;opacity:1}.padding-5{padding:5px}.hidden{visibility:hidden}.font-weight-bold{font-weight:900}.textalign-center{text-align:center}.cursor-pointer{cursor:pointer}.cursor-default{cursor:default}.font-weight-600{font-weight:600}.marginRight-15{margin-right:15px}.marginRight-20{margin-right:20px}.switch{position:relative;display:inline-block;width:46px;height:24px;margin-left:5px;margin-right:5px}.switch input{opacity:0;width:0;height:0}.slider{position:absolute;cursor:pointer;inset:0;background-color:#2d5ca0;-webkit-transition:.4s;transition:.4s}.slider:before{position:absolute;content:\"\";height:18px;width:18px;right:3px;bottom:3px;background-color:#fff;-webkit-transition:.4s;transition:.4s}.slider.round{border-radius:18px}.slider.round:before{border-radius:50%}.slider1{position:absolute;cursor:pointer;inset:0;background-color:#015ba2cf;-webkit-transition:.4s;transition:.4s}.slider1:before{position:absolute;content:\"\";height:18px;width:18px;left:3px;bottom:3px;background-color:#fff;-webkit-transition:.4s;transition:.4s}.slider1.round1{border-radius:18px}.slider1.round1:before{border-radius:50%}.lib-display-flex{display:flex}.lib-align-items-center{align-items:center}.lib-flex-direction-column{flex-direction:column}.lib-justify-content-space-between{justify-content:space-between}.lib-justify-content-space-around{justify-content:space-around}.lib-justify-content-center{justify-content:center}.lib-justify-content-start{justify-content:start}.lib-justify-content-end{justify-content:end}.lib-ml-20{margin-left:20px}.lib-position-absolute{position:absolute}.lib-z-index-9{z-index:9}.marginright-3{margin-right:3px}@media (min-height: 900px){.lib-chart-wrapper{border-radius:8px}.header-font-size-1{font-size:18px!important}.font-size-1{font-size:14px!important}.font-size-2{font-size:16px!important}.font-size-3{font-size:14px!important}.font-size-4{font-size:22px!important}.font-size-5{font-size:24px!important}}\n"], dependencies: [{ kind: "directive", type: i1.NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }, { kind: "directive", type: i1.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "directive", type: i1.NgSwitch, selector: "[ngSwitch]", inputs: ["ngSwitch"] }, { kind: "directive", type: i1.NgSwitchCase, selector: "[ngSwitchCase]", inputs: ["ngSwitchCase"] }, { kind: "component", type: ChartHeaderV1Component, selector: "lib-chart-header-v1", inputs: ["isAlertEnabled", "title", "menuOptions", "isEditEnabled", "isria", "hasDrillDown", "selectedKpiTooltop"], outputs: ["menuOptionClickEvent"] }, { kind: "component", type: ChartHeaderV2Component, selector: "lib-chart-header-v2", inputs: ["chartData", "chartConfiguration"], outputs: ["clickEvent", "zoomInZoomOutClick"] }, { kind: "pipe", type: i1.DecimalPipe, name: "number" }], encapsulation: i0.ViewEncapsulation.None }); }
9856
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.12", type: PlainTrendComponent, selector: "lib-plain-trend", inputs: { chartData: "chartData", customChartConfiguration: "customChartConfiguration" }, outputs: { clickEvent: "clickEvent", headerMenuclickEvent: "headerMenuclickEvent" }, viewQueries: [{ propertyName: "containerElt", first: true, predicate: ["plaintrendcontainer"], descendants: true, static: true }], usesInheritance: true, usesOnChanges: true, ngImport: i0, template: "<div #piecontainer class=\"lib-chart-wrapper\" style=\"background-color: var(--card-bg);\">\r\n <lib-chart-header-v1\r\n *ngIf=\"isHeaderVisible\"\r\n [title]=\"chartData.metaData.title\"\r\n [hasDrillDown]=\"chartData.metaData.hasDrillDown\"\r\n [isEditEnabled]=\"chartData.metaData.isEditEnabled\"\r\n [menuOptions]=\"chartConfiguration.headerMenuOptions\"\r\n [selectedKpiTooltop]=\"chartConfiguration.selectedKpiTooltop\"\r\n [isria]=\"customChartConfiguration.isRia\"\r\n [isAlertEnabled]=\"isAlertEnabled\"\r\n (menuOptionClickEvent)=\"handleHeaderMenuClick($event)\"\r\n ></lib-chart-header-v1>\r\n\r\n <ng-container *ngIf=\"chartConfiguration.isToggleVisible && !isHeaderVisible && chartData.data.value > 0\">\r\n <lib-chart-header-v2\r\n [chartData]=\"chartData\"\r\n [chartConfiguration]=\"chartConfiguration\"\r\n (clickEvent)=\"handleClick($event)\"\r\n ></lib-chart-header-v2>\r\n </ng-container>\r\n\r\n <div\r\n #plaintrendcontainer\r\n id=\"trendchartcontainer\"\r\n class=\"lib-chart-svg trendcontainer\"\r\n [style.height]=\"chartConfiguration.svgHeight\"\r\n >\r\n <div\r\n class=\"central-content\"\r\n [ngClass]=\"{\r\n 'central-content-non-drilldown-sizes': isHeaderVisible,\r\n 'central-content-drilldown-sizes': !isHeaderVisible,\r\n 'lib-justify-content-space-around': chartData.data.bgColor,\r\n 'lib-justify-content-center': !chartData.data.bgColor\r\n }\"\r\n (click)=\"handleClick(chartData.data.daterange)\"\r\n >\r\n <span\r\n class=\"value-style\"\r\n [ngClass]=\"{\r\n 'value-style-non-drilldown': isHeaderVisible,\r\n 'value-style-drilldown': !isHeaderVisible\r\n }\"\r\n >\r\n {{ chartData.data.value | number: '1.0-2' }}\r\n </span>\r\n\r\n <span\r\n class=\"name-style\"\r\n [ngClass]=\"{\r\n 'name-style-non-drilldown': isHeaderVisible,\r\n 'name-style-drilldown': !isHeaderVisible\r\n }\"\r\n >\r\n {{ chartData.data.name }}\r\n </span>\r\n\r\n <div\r\n *ngIf=\"chartData.data.bgColor\"\r\n class=\"direction-panel\"\r\n [ngClass]=\"{\r\n 'direction-panel-non-drilldown': isHeaderVisible,\r\n 'direction-panel-drilldown': !isHeaderVisible\r\n }\"\r\n [style.backgroundColor]=\"chartData.data.bgColor\"\r\n >\r\n <ng-container [ngSwitch]=\"chartData.data.valueDirection\">\r\n <img *ngSwitchCase=\"1\" class=\"trend-img\" src=\"/assets/up-trend.png\" alt=\"up\" />\r\n <img *ngSwitchCase=\"0\" class=\"trend-img\" src=\"/assets/sameline-trend.png\" alt=\"same\" />\r\n <img *ngSwitchCase=\"-1\" class=\"trend-img\" src=\"/assets/down-trend.png\" alt=\"down\" />\r\n </ng-container>\r\n </div>\r\n </div>\r\n\r\n <div\r\n class=\"date-range\"\r\n [ngClass]=\"{ 'date-range-drilldown': !isHeaderVisible }\"\r\n >\r\n <i class=\"fa fa-calendar marginright-3\"></i>\r\n {{ chartData.data.daterange }}\r\n </div>\r\n </div>\r\n</div>\r\n", styles: [".trendcontainer{display:flex!important;justify-content:center;align-items:center;flex-direction:column;position:relative;top:0;width:100%;height:100%;padding:1rem;box-sizing:border-box}.central-content{background:#f0f0f0;display:flex;align-items:center;justify-content:center;position:relative;box-shadow:0 1px 2px #0000001a,0 3px 10px #0000004d;border-radius:8px;padding:.5rem 1rem;text-align:center;transition:all .3s ease-in-out;max-width:90%;flex-wrap:wrap}.central-content-non-drilldown-sizes{height:auto;min-width:150px}.central-content-drilldown-sizes{min-width:300px;height:auto}.value-style,.name-style{font-weight:600;margin:.5rem;color:var(--pph-text-color)}.value-style-non-drilldown,.name-style-non-drilldown{font-size:20px}.value-style-drilldown,.name-style-drilldown{font-size:48px}.direction-panel{border-radius:8px;margin-right:5px;display:flex;justify-content:center;align-items:center}.direction-panel-non-drilldown{width:45px;height:45px}.direction-panel-drilldown{width:80px;height:80px}.trend-img{transform:scale(1.25)}.date-range{margin-top:1rem;font-size:16px;text-align:center}@media (max-width: 1024px){.central-content-drilldown-sizes{min-width:250px}.value-style-drilldown,.name-style-drilldown{font-size:36px}}@media (max-width: 768px){.central-content{flex-direction:column}.value-style-drilldown,.name-style-drilldown{font-size:28px}.date-range{font-size:14px}}@media (max-width: 480px){.central-content{min-width:200px;padding:.5rem}.value-style,.name-style{font-size:18px}.direction-panel{width:40px;height:40px}.trend-img{transform:scale(1)}.date-range{font-size:12px}}\n", ".lib-chart-wrapper{width:100%;height:100%;font-family:system-ui,-apple-system,BlinkMacSystemFont,Segoe UI,Roboto;background:#fff 0% 0% no-repeat padding-box;position:relative}.lib-chart-wrapper-wo-shadow{width:100%;height:100%;font-family:system-ui,-apple-system,BlinkMacSystemFont,Segoe UI,Roboto}.lib-chart-wrapper:hover .chart-header-v1:not(.header-no-background){background-color:#2e3640}.lib-chart-wrapper:hover .chart-header-v1:not(.header-no-background) .chart-title{color:#fff}.lib-chart-svg{width:100%}.lib-chart-header{text-align:center;background-color:#052340;color:#fff;width:100%;height:17%;word-spacing:.5px;line-height:1.8;font-weight:700;padding-top:2%;letter-spacing:0;font-size:1.2em}.lib-donut-chart-footer{width:100%;text-align:right}.lib-donut-label-text{font-size:.9em;font-family:system-ui,-apple-system,BlinkMacSystemFont,Segoe UI,Roboto;font-weight:400;letter-spacing:0px;color:#000;opacity:1}.lib-donut-label-icon{display:inline-block;width:10px;height:10px;margin-right:20px;border-radius:3px}.lib-donut-label-item{font-weight:400;font-size:.85em;color:#2f2f2f}.lib-donut-justified-label-wrapper{width:100%;display:inline-block;text-align:center;list-style-type:none}.lib-donut-justified-label-item{font-weight:400;font-size:.85em;color:#2f2f2f;display:inline-block;text-align:left;padding:0 10px}.lib-donut-justified-label-icon{display:inline-block;width:10px;height:10px;margin-right:5px;border-radius:3px}.lib-no-background{background:none!important}.lib-display-hidden{display:none}.lib-ylabel-weeklyCharts{font-style:normal;font-variant:normal;font-weight:800;font-size:10px;line-height:12px;font-family:system-ui,-apple-system,BlinkMacSystemFont,Segoe UI,Roboto;letter-spacing:-.07px;text-transform:capitalize;color:#000}.lib-data-labels-weeklycharts{font-style:normal;font-variant:normal;font-weight:400;font-size:12px;line-height:14px;font-family:system-ui,-apple-system,BlinkMacSystemFont,Segoe UI,Roboto;letter-spacing:-.06px;color:#000}.lib-data-labels-angled-weeklycharts{font-style:normal;font-variant:normal;font-weight:800;font-size:9.5px;line-height:11px;font-family:system-ui,-apple-system,BlinkMacSystemFont,Segoe UI,Roboto;letter-spacing:.4px;text-anchor:start}.lib-xaxis-labels-texts-weeklycharts{font-style:normal;font-variant:normal;font-weight:800;font-size:10px;line-height:11px;letter-spacing:-.05px;fill:#000}.lib-xaxis-labels-texts-drilldown{font-family:system-ui,-apple-system,BlinkMacSystemFont,Segoe UI,Roboto;font-size:14px;letter-spacing:-1px;color:#000;opacity:1;text-transform:capitalize}.lib-white-space-nowrap{white-space:nowrap}.lib-xaxis-labels-texts-drilldown-alt{font-family:system-ui,-apple-system,BlinkMacSystemFont,Segoe UI,Roboto;font-size:10px;letter-spacing:0px;color:#000;opacity:1;text-transform:capitalize}.lib-yaxis-labels-texts-drilldown{font-family:system-ui,-apple-system,BlinkMacSystemFont,Segoe UI,Roboto;font-size:14px;letter-spacing:0px;color:#000!important;opacity:1}.lib-ylabel-drilldowncharts,.lib-xlabel-drilldowncharts{font-family:system-ui,-apple-system,BlinkMacSystemFont,Segoe UI,Roboto;font-size:16px;letter-spacing:-.1px;color:#000!important;opacity:1}.lib-donut-justified-label-icon-drilldown{display:inline-block;width:14px;height:14px;margin-right:10px;border-radius:50%}.marginright-2{margin-right:2%}.margintop-5{margin-top:5%}.width-100{width:100%}.float-right{float:right}.marginBottom-10{margin-bottom:10px}.header-alt{align-items:center;margin-bottom:10px}input::placeholder{font-size:20px;font-family:system-ui,-apple-system,BlinkMacSystemFont,Segoe UI,Roboto;letter-spacing:0px;color:#000;opacity:1}.padding-5{padding:5px}.hidden{visibility:hidden}.font-weight-bold{font-weight:900}.textalign-center{text-align:center}.cursor-pointer{cursor:pointer}.cursor-default{cursor:default}.font-weight-600{font-weight:600}.marginRight-15{margin-right:15px}.marginRight-20{margin-right:20px}.switch{position:relative;display:inline-block;width:46px;height:24px;margin-left:5px;margin-right:5px}.switch input{opacity:0;width:0;height:0}.slider{position:absolute;cursor:pointer;inset:0;background-color:#2d5ca0;-webkit-transition:.4s;transition:.4s}.slider:before{position:absolute;content:\"\";height:18px;width:18px;right:3px;bottom:3px;background-color:#fff;-webkit-transition:.4s;transition:.4s}.slider.round{border-radius:18px}.slider.round:before{border-radius:50%}.slider1{position:absolute;cursor:pointer;inset:0;background-color:#015ba2cf;-webkit-transition:.4s;transition:.4s}.slider1:before{position:absolute;content:\"\";height:18px;width:18px;left:3px;bottom:3px;background-color:#fff;-webkit-transition:.4s;transition:.4s}.slider1.round1{border-radius:18px}.slider1.round1:before{border-radius:50%}.lib-display-flex{display:flex}.lib-align-items-center{align-items:center}.lib-flex-direction-column{flex-direction:column}.lib-justify-content-space-between{justify-content:space-between}.lib-justify-content-space-around{justify-content:space-around}.lib-justify-content-center{justify-content:center}.lib-justify-content-start{justify-content:start}.lib-justify-content-end{justify-content:end}.lib-ml-20{margin-left:20px}.lib-position-absolute{position:absolute}.lib-z-index-9{z-index:9}.marginright-3{margin-right:3px}@media (min-height: 900px){.lib-chart-wrapper{border-radius:8px}.header-font-size-1{font-size:18px!important}.font-size-1{font-size:14px!important}.font-size-2{font-size:16px!important}.font-size-3{font-size:14px!important}.font-size-4{font-size:22px!important}.font-size-5{font-size:24px!important}}\n"], dependencies: [{ kind: "directive", type: i1.NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }, { kind: "directive", type: i1.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "directive", type: i1.NgSwitch, selector: "[ngSwitch]", inputs: ["ngSwitch"] }, { kind: "directive", type: i1.NgSwitchCase, selector: "[ngSwitchCase]", inputs: ["ngSwitchCase"] }, { kind: "component", type: ChartHeaderV1Component, selector: "lib-chart-header-v1", inputs: ["isAlertEnabled", "title", "menuOptions", "isEditEnabled", "isria", "hasDrillDown", "selectedKpiTooltop"], outputs: ["menuOptionClickEvent"] }, { kind: "component", type: ChartHeaderV2Component, selector: "lib-chart-header-v2", inputs: ["chartData", "chartConfiguration"], outputs: ["clickEvent", "zoomInZoomOutClick"] }, { kind: "pipe", type: i1.DecimalPipe, name: "number" }], encapsulation: i0.ViewEncapsulation.None }); }
9919
9857
  }
9920
9858
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: PlainTrendComponent, decorators: [{
9921
9859
  type: Component,
9922
- args: [{ selector: 'lib-plain-trend', encapsulation: ViewEncapsulation.None, template: "<div #piecontainer class=\"lib-chart-wrapper\" style=\"background-color: var(--card-bg);\">\r\n <lib-chart-header-v1\r\n *ngIf=\"isHeaderVisible\"\r\n [title]=\"chartData.metaData.title\"\r\n [hasDrillDown]=\"chartData.metaData.hasDrillDown\"\r\n [isEditEnabled]=\"chartData.metaData.isEditEnabled\"\r\n [menuOptions]=\"chartConfiguration.headerMenuOptions\"\r\n [selectedKpiTooltop]=\"chartConfiguration.selectedKpiTooltop\"\r\n [isria]=\"customChartConfiguration.isRia\"\r\n [isAlertEnabled]=\"isAlertEnabled\"\r\n (menuOptionClickEvent)=\"handleHeaderMenuClick($event)\"\r\n ></lib-chart-header-v1>\r\n\r\n <ng-container *ngIf=\"chartConfiguration.isToggleVisible && !isHeaderVisible && chartData.data.value > 0\">\r\n <lib-chart-header-v2\r\n [chartData]=\"chartData\"\r\n [chartConfiguration]=\"chartConfiguration\"\r\n (clickEvent)=\"handleClick($event)\"\r\n ></lib-chart-header-v2>\r\n </ng-container>\r\n\r\n <div\r\n #guagechartcontainer\r\n id=\"trendchartcontainer\"\r\n class=\"lib-chart-svg trendcontainer\"\r\n [style.height]=\"chartConfiguration.svgHeight\"\r\n >\r\n <div\r\n class=\"central-content\"\r\n [ngClass]=\"{\r\n 'central-content-non-drilldown-sizes': isHeaderVisible,\r\n 'central-content-drilldown-sizes': !isHeaderVisible,\r\n 'lib-justify-content-space-around': chartData.data.bgColor,\r\n 'lib-justify-content-center': !chartData.data.bgColor\r\n }\"\r\n (click)=\"handleClick(chartData.data.daterange)\"\r\n >\r\n <span\r\n class=\"value-style\"\r\n [ngClass]=\"{\r\n 'value-style-non-drilldown': isHeaderVisible,\r\n 'value-style-drilldown': !isHeaderVisible\r\n }\"\r\n >\r\n {{ chartData.data.value | number: '1.0-2' }}\r\n </span>\r\n\r\n <span\r\n class=\"name-style\"\r\n [ngClass]=\"{\r\n 'name-style-non-drilldown': isHeaderVisible,\r\n 'name-style-drilldown': !isHeaderVisible\r\n }\"\r\n >\r\n {{ chartData.data.name }}\r\n </span>\r\n\r\n <div\r\n *ngIf=\"chartData.data.bgColor\"\r\n class=\"direction-panel\"\r\n [ngClass]=\"{\r\n 'direction-panel-non-drilldown': isHeaderVisible,\r\n 'direction-panel-drilldown': !isHeaderVisible\r\n }\"\r\n [style.backgroundColor]=\"chartData.data.bgColor\"\r\n >\r\n <ng-container [ngSwitch]=\"chartData.data.valueDirection\">\r\n <img *ngSwitchCase=\"1\" class=\"trend-img\" src=\"/assets/up-trend.png\" alt=\"up\" />\r\n <img *ngSwitchCase=\"0\" class=\"trend-img\" src=\"/assets/sameline-trend.png\" alt=\"same\" />\r\n <img *ngSwitchCase=\"-1\" class=\"trend-img\" src=\"/assets/down-trend.png\" alt=\"down\" />\r\n </ng-container>\r\n </div>\r\n </div>\r\n\r\n <div\r\n class=\"date-range\"\r\n [ngClass]=\"{ 'date-range-drilldown': !isHeaderVisible }\"\r\n >\r\n <i class=\"fa fa-calendar marginright-3\"></i>\r\n {{ chartData.data.daterange }}\r\n </div>\r\n </div>\r\n</div>\r\n", styles: [".trendcontainer{display:flex!important;justify-content:center;align-items:center;flex-direction:column;position:relative;top:0;width:100%;height:100%;padding:1rem;box-sizing:border-box}.central-content{background:#f0f0f0;display:flex;align-items:center;justify-content:center;position:relative;box-shadow:0 1px 2px #0000001a,0 3px 10px #0000004d;border-radius:8px;padding:.5rem 1rem;text-align:center;transition:all .3s ease-in-out;max-width:90%;flex-wrap:wrap}.central-content-non-drilldown-sizes{height:auto;min-width:150px}.central-content-drilldown-sizes{min-width:300px;height:auto}.value-style,.name-style{font-weight:600;margin:.5rem;color:var(--pph-text-color)}.value-style-non-drilldown,.name-style-non-drilldown{font-size:20px}.value-style-drilldown,.name-style-drilldown{font-size:48px}.direction-panel{border-radius:8px;margin-right:5px;display:flex;justify-content:center;align-items:center}.direction-panel-non-drilldown{width:45px;height:45px}.direction-panel-drilldown{width:80px;height:80px}.trend-img{transform:scale(1.25)}.date-range{margin-top:1rem;font-size:16px;text-align:center}@media (max-width: 1024px){.central-content-drilldown-sizes{min-width:250px}.value-style-drilldown,.name-style-drilldown{font-size:36px}}@media (max-width: 768px){.central-content{flex-direction:column}.value-style-drilldown,.name-style-drilldown{font-size:28px}.date-range{font-size:14px}}@media (max-width: 480px){.central-content{min-width:200px;padding:.5rem}.value-style,.name-style{font-size:18px}.direction-panel{width:40px;height:40px}.trend-img{transform:scale(1)}.date-range{font-size:12px}}\n", ".lib-chart-wrapper{width:100%;height:100%;font-family:system-ui,-apple-system,BlinkMacSystemFont,Segoe UI,Roboto;background:#fff 0% 0% no-repeat padding-box;position:relative}.lib-chart-wrapper-wo-shadow{width:100%;height:100%;font-family:system-ui,-apple-system,BlinkMacSystemFont,Segoe UI,Roboto}.lib-chart-wrapper:hover .chart-header-v1:not(.header-no-background){background-color:#2e3640}.lib-chart-wrapper:hover .chart-header-v1:not(.header-no-background) .chart-title{color:#fff}.lib-chart-svg{width:100%}.lib-chart-header{text-align:center;background-color:#052340;color:#fff;width:100%;height:17%;word-spacing:.5px;line-height:1.8;font-weight:700;padding-top:2%;letter-spacing:0;font-size:1.2em}.lib-donut-chart-footer{width:100%;text-align:right}.lib-donut-label-text{font-size:.9em;font-family:system-ui,-apple-system,BlinkMacSystemFont,Segoe UI,Roboto;font-weight:400;letter-spacing:0px;color:#000;opacity:1}.lib-donut-label-icon{display:inline-block;width:10px;height:10px;margin-right:20px;border-radius:3px}.lib-donut-label-item{font-weight:400;font-size:.85em;color:#2f2f2f}.lib-donut-justified-label-wrapper{width:100%;display:inline-block;text-align:center;list-style-type:none}.lib-donut-justified-label-item{font-weight:400;font-size:.85em;color:#2f2f2f;display:inline-block;text-align:left;padding:0 10px}.lib-donut-justified-label-icon{display:inline-block;width:10px;height:10px;margin-right:5px;border-radius:3px}.lib-no-background{background:none!important}.lib-display-hidden{display:none}.lib-ylabel-weeklyCharts{font-style:normal;font-variant:normal;font-weight:800;font-size:10px;line-height:12px;font-family:system-ui,-apple-system,BlinkMacSystemFont,Segoe UI,Roboto;letter-spacing:-.07px;text-transform:capitalize;color:#000}.lib-data-labels-weeklycharts{font-style:normal;font-variant:normal;font-weight:400;font-size:12px;line-height:14px;font-family:system-ui,-apple-system,BlinkMacSystemFont,Segoe UI,Roboto;letter-spacing:-.06px;color:#000}.lib-data-labels-angled-weeklycharts{font-style:normal;font-variant:normal;font-weight:800;font-size:9.5px;line-height:11px;font-family:system-ui,-apple-system,BlinkMacSystemFont,Segoe UI,Roboto;letter-spacing:.4px;text-anchor:start}.lib-xaxis-labels-texts-weeklycharts{font-style:normal;font-variant:normal;font-weight:800;font-size:10px;line-height:11px;letter-spacing:-.05px;fill:#000}.lib-xaxis-labels-texts-drilldown{font-family:system-ui,-apple-system,BlinkMacSystemFont,Segoe UI,Roboto;font-size:14px;letter-spacing:-1px;color:#000;opacity:1;text-transform:capitalize}.lib-white-space-nowrap{white-space:nowrap}.lib-xaxis-labels-texts-drilldown-alt{font-family:system-ui,-apple-system,BlinkMacSystemFont,Segoe UI,Roboto;font-size:10px;letter-spacing:0px;color:#000;opacity:1;text-transform:capitalize}.lib-yaxis-labels-texts-drilldown{font-family:system-ui,-apple-system,BlinkMacSystemFont,Segoe UI,Roboto;font-size:14px;letter-spacing:0px;color:#000!important;opacity:1}.lib-ylabel-drilldowncharts,.lib-xlabel-drilldowncharts{font-family:system-ui,-apple-system,BlinkMacSystemFont,Segoe UI,Roboto;font-size:16px;letter-spacing:-.1px;color:#000!important;opacity:1}.lib-donut-justified-label-icon-drilldown{display:inline-block;width:14px;height:14px;margin-right:10px;border-radius:50%}.marginright-2{margin-right:2%}.margintop-5{margin-top:5%}.width-100{width:100%}.float-right{float:right}.marginBottom-10{margin-bottom:10px}.header-alt{align-items:center;margin-bottom:10px}input::placeholder{font-size:20px;font-family:system-ui,-apple-system,BlinkMacSystemFont,Segoe UI,Roboto;letter-spacing:0px;color:#000;opacity:1}.padding-5{padding:5px}.hidden{visibility:hidden}.font-weight-bold{font-weight:900}.textalign-center{text-align:center}.cursor-pointer{cursor:pointer}.cursor-default{cursor:default}.font-weight-600{font-weight:600}.marginRight-15{margin-right:15px}.marginRight-20{margin-right:20px}.switch{position:relative;display:inline-block;width:46px;height:24px;margin-left:5px;margin-right:5px}.switch input{opacity:0;width:0;height:0}.slider{position:absolute;cursor:pointer;inset:0;background-color:#2d5ca0;-webkit-transition:.4s;transition:.4s}.slider:before{position:absolute;content:\"\";height:18px;width:18px;right:3px;bottom:3px;background-color:#fff;-webkit-transition:.4s;transition:.4s}.slider.round{border-radius:18px}.slider.round:before{border-radius:50%}.slider1{position:absolute;cursor:pointer;inset:0;background-color:#015ba2cf;-webkit-transition:.4s;transition:.4s}.slider1:before{position:absolute;content:\"\";height:18px;width:18px;left:3px;bottom:3px;background-color:#fff;-webkit-transition:.4s;transition:.4s}.slider1.round1{border-radius:18px}.slider1.round1:before{border-radius:50%}.lib-display-flex{display:flex}.lib-align-items-center{align-items:center}.lib-flex-direction-column{flex-direction:column}.lib-justify-content-space-between{justify-content:space-between}.lib-justify-content-space-around{justify-content:space-around}.lib-justify-content-center{justify-content:center}.lib-justify-content-start{justify-content:start}.lib-justify-content-end{justify-content:end}.lib-ml-20{margin-left:20px}.lib-position-absolute{position:absolute}.lib-z-index-9{z-index:9}.marginright-3{margin-right:3px}@media (min-height: 900px){.lib-chart-wrapper{border-radius:8px}.header-font-size-1{font-size:18px!important}.font-size-1{font-size:14px!important}.font-size-2{font-size:16px!important}.font-size-3{font-size:14px!important}.font-size-4{font-size:22px!important}.font-size-5{font-size:24px!important}}\n"] }]
9860
+ args: [{ selector: 'lib-plain-trend', encapsulation: ViewEncapsulation.None, template: "<div #piecontainer class=\"lib-chart-wrapper\" style=\"background-color: var(--card-bg);\">\r\n <lib-chart-header-v1\r\n *ngIf=\"isHeaderVisible\"\r\n [title]=\"chartData.metaData.title\"\r\n [hasDrillDown]=\"chartData.metaData.hasDrillDown\"\r\n [isEditEnabled]=\"chartData.metaData.isEditEnabled\"\r\n [menuOptions]=\"chartConfiguration.headerMenuOptions\"\r\n [selectedKpiTooltop]=\"chartConfiguration.selectedKpiTooltop\"\r\n [isria]=\"customChartConfiguration.isRia\"\r\n [isAlertEnabled]=\"isAlertEnabled\"\r\n (menuOptionClickEvent)=\"handleHeaderMenuClick($event)\"\r\n ></lib-chart-header-v1>\r\n\r\n <ng-container *ngIf=\"chartConfiguration.isToggleVisible && !isHeaderVisible && chartData.data.value > 0\">\r\n <lib-chart-header-v2\r\n [chartData]=\"chartData\"\r\n [chartConfiguration]=\"chartConfiguration\"\r\n (clickEvent)=\"handleClick($event)\"\r\n ></lib-chart-header-v2>\r\n </ng-container>\r\n\r\n <div\r\n #plaintrendcontainer\r\n id=\"trendchartcontainer\"\r\n class=\"lib-chart-svg trendcontainer\"\r\n [style.height]=\"chartConfiguration.svgHeight\"\r\n >\r\n <div\r\n class=\"central-content\"\r\n [ngClass]=\"{\r\n 'central-content-non-drilldown-sizes': isHeaderVisible,\r\n 'central-content-drilldown-sizes': !isHeaderVisible,\r\n 'lib-justify-content-space-around': chartData.data.bgColor,\r\n 'lib-justify-content-center': !chartData.data.bgColor\r\n }\"\r\n (click)=\"handleClick(chartData.data.daterange)\"\r\n >\r\n <span\r\n class=\"value-style\"\r\n [ngClass]=\"{\r\n 'value-style-non-drilldown': isHeaderVisible,\r\n 'value-style-drilldown': !isHeaderVisible\r\n }\"\r\n >\r\n {{ chartData.data.value | number: '1.0-2' }}\r\n </span>\r\n\r\n <span\r\n class=\"name-style\"\r\n [ngClass]=\"{\r\n 'name-style-non-drilldown': isHeaderVisible,\r\n 'name-style-drilldown': !isHeaderVisible\r\n }\"\r\n >\r\n {{ chartData.data.name }}\r\n </span>\r\n\r\n <div\r\n *ngIf=\"chartData.data.bgColor\"\r\n class=\"direction-panel\"\r\n [ngClass]=\"{\r\n 'direction-panel-non-drilldown': isHeaderVisible,\r\n 'direction-panel-drilldown': !isHeaderVisible\r\n }\"\r\n [style.backgroundColor]=\"chartData.data.bgColor\"\r\n >\r\n <ng-container [ngSwitch]=\"chartData.data.valueDirection\">\r\n <img *ngSwitchCase=\"1\" class=\"trend-img\" src=\"/assets/up-trend.png\" alt=\"up\" />\r\n <img *ngSwitchCase=\"0\" class=\"trend-img\" src=\"/assets/sameline-trend.png\" alt=\"same\" />\r\n <img *ngSwitchCase=\"-1\" class=\"trend-img\" src=\"/assets/down-trend.png\" alt=\"down\" />\r\n </ng-container>\r\n </div>\r\n </div>\r\n\r\n <div\r\n class=\"date-range\"\r\n [ngClass]=\"{ 'date-range-drilldown': !isHeaderVisible }\"\r\n >\r\n <i class=\"fa fa-calendar marginright-3\"></i>\r\n {{ chartData.data.daterange }}\r\n </div>\r\n </div>\r\n</div>\r\n", styles: [".trendcontainer{display:flex!important;justify-content:center;align-items:center;flex-direction:column;position:relative;top:0;width:100%;height:100%;padding:1rem;box-sizing:border-box}.central-content{background:#f0f0f0;display:flex;align-items:center;justify-content:center;position:relative;box-shadow:0 1px 2px #0000001a,0 3px 10px #0000004d;border-radius:8px;padding:.5rem 1rem;text-align:center;transition:all .3s ease-in-out;max-width:90%;flex-wrap:wrap}.central-content-non-drilldown-sizes{height:auto;min-width:150px}.central-content-drilldown-sizes{min-width:300px;height:auto}.value-style,.name-style{font-weight:600;margin:.5rem;color:var(--pph-text-color)}.value-style-non-drilldown,.name-style-non-drilldown{font-size:20px}.value-style-drilldown,.name-style-drilldown{font-size:48px}.direction-panel{border-radius:8px;margin-right:5px;display:flex;justify-content:center;align-items:center}.direction-panel-non-drilldown{width:45px;height:45px}.direction-panel-drilldown{width:80px;height:80px}.trend-img{transform:scale(1.25)}.date-range{margin-top:1rem;font-size:16px;text-align:center}@media (max-width: 1024px){.central-content-drilldown-sizes{min-width:250px}.value-style-drilldown,.name-style-drilldown{font-size:36px}}@media (max-width: 768px){.central-content{flex-direction:column}.value-style-drilldown,.name-style-drilldown{font-size:28px}.date-range{font-size:14px}}@media (max-width: 480px){.central-content{min-width:200px;padding:.5rem}.value-style,.name-style{font-size:18px}.direction-panel{width:40px;height:40px}.trend-img{transform:scale(1)}.date-range{font-size:12px}}\n", ".lib-chart-wrapper{width:100%;height:100%;font-family:system-ui,-apple-system,BlinkMacSystemFont,Segoe UI,Roboto;background:#fff 0% 0% no-repeat padding-box;position:relative}.lib-chart-wrapper-wo-shadow{width:100%;height:100%;font-family:system-ui,-apple-system,BlinkMacSystemFont,Segoe UI,Roboto}.lib-chart-wrapper:hover .chart-header-v1:not(.header-no-background){background-color:#2e3640}.lib-chart-wrapper:hover .chart-header-v1:not(.header-no-background) .chart-title{color:#fff}.lib-chart-svg{width:100%}.lib-chart-header{text-align:center;background-color:#052340;color:#fff;width:100%;height:17%;word-spacing:.5px;line-height:1.8;font-weight:700;padding-top:2%;letter-spacing:0;font-size:1.2em}.lib-donut-chart-footer{width:100%;text-align:right}.lib-donut-label-text{font-size:.9em;font-family:system-ui,-apple-system,BlinkMacSystemFont,Segoe UI,Roboto;font-weight:400;letter-spacing:0px;color:#000;opacity:1}.lib-donut-label-icon{display:inline-block;width:10px;height:10px;margin-right:20px;border-radius:3px}.lib-donut-label-item{font-weight:400;font-size:.85em;color:#2f2f2f}.lib-donut-justified-label-wrapper{width:100%;display:inline-block;text-align:center;list-style-type:none}.lib-donut-justified-label-item{font-weight:400;font-size:.85em;color:#2f2f2f;display:inline-block;text-align:left;padding:0 10px}.lib-donut-justified-label-icon{display:inline-block;width:10px;height:10px;margin-right:5px;border-radius:3px}.lib-no-background{background:none!important}.lib-display-hidden{display:none}.lib-ylabel-weeklyCharts{font-style:normal;font-variant:normal;font-weight:800;font-size:10px;line-height:12px;font-family:system-ui,-apple-system,BlinkMacSystemFont,Segoe UI,Roboto;letter-spacing:-.07px;text-transform:capitalize;color:#000}.lib-data-labels-weeklycharts{font-style:normal;font-variant:normal;font-weight:400;font-size:12px;line-height:14px;font-family:system-ui,-apple-system,BlinkMacSystemFont,Segoe UI,Roboto;letter-spacing:-.06px;color:#000}.lib-data-labels-angled-weeklycharts{font-style:normal;font-variant:normal;font-weight:800;font-size:9.5px;line-height:11px;font-family:system-ui,-apple-system,BlinkMacSystemFont,Segoe UI,Roboto;letter-spacing:.4px;text-anchor:start}.lib-xaxis-labels-texts-weeklycharts{font-style:normal;font-variant:normal;font-weight:800;font-size:10px;line-height:11px;letter-spacing:-.05px;fill:#000}.lib-xaxis-labels-texts-drilldown{font-family:system-ui,-apple-system,BlinkMacSystemFont,Segoe UI,Roboto;font-size:14px;letter-spacing:-1px;color:#000;opacity:1;text-transform:capitalize}.lib-white-space-nowrap{white-space:nowrap}.lib-xaxis-labels-texts-drilldown-alt{font-family:system-ui,-apple-system,BlinkMacSystemFont,Segoe UI,Roboto;font-size:10px;letter-spacing:0px;color:#000;opacity:1;text-transform:capitalize}.lib-yaxis-labels-texts-drilldown{font-family:system-ui,-apple-system,BlinkMacSystemFont,Segoe UI,Roboto;font-size:14px;letter-spacing:0px;color:#000!important;opacity:1}.lib-ylabel-drilldowncharts,.lib-xlabel-drilldowncharts{font-family:system-ui,-apple-system,BlinkMacSystemFont,Segoe UI,Roboto;font-size:16px;letter-spacing:-.1px;color:#000!important;opacity:1}.lib-donut-justified-label-icon-drilldown{display:inline-block;width:14px;height:14px;margin-right:10px;border-radius:50%}.marginright-2{margin-right:2%}.margintop-5{margin-top:5%}.width-100{width:100%}.float-right{float:right}.marginBottom-10{margin-bottom:10px}.header-alt{align-items:center;margin-bottom:10px}input::placeholder{font-size:20px;font-family:system-ui,-apple-system,BlinkMacSystemFont,Segoe UI,Roboto;letter-spacing:0px;color:#000;opacity:1}.padding-5{padding:5px}.hidden{visibility:hidden}.font-weight-bold{font-weight:900}.textalign-center{text-align:center}.cursor-pointer{cursor:pointer}.cursor-default{cursor:default}.font-weight-600{font-weight:600}.marginRight-15{margin-right:15px}.marginRight-20{margin-right:20px}.switch{position:relative;display:inline-block;width:46px;height:24px;margin-left:5px;margin-right:5px}.switch input{opacity:0;width:0;height:0}.slider{position:absolute;cursor:pointer;inset:0;background-color:#2d5ca0;-webkit-transition:.4s;transition:.4s}.slider:before{position:absolute;content:\"\";height:18px;width:18px;right:3px;bottom:3px;background-color:#fff;-webkit-transition:.4s;transition:.4s}.slider.round{border-radius:18px}.slider.round:before{border-radius:50%}.slider1{position:absolute;cursor:pointer;inset:0;background-color:#015ba2cf;-webkit-transition:.4s;transition:.4s}.slider1:before{position:absolute;content:\"\";height:18px;width:18px;left:3px;bottom:3px;background-color:#fff;-webkit-transition:.4s;transition:.4s}.slider1.round1{border-radius:18px}.slider1.round1:before{border-radius:50%}.lib-display-flex{display:flex}.lib-align-items-center{align-items:center}.lib-flex-direction-column{flex-direction:column}.lib-justify-content-space-between{justify-content:space-between}.lib-justify-content-space-around{justify-content:space-around}.lib-justify-content-center{justify-content:center}.lib-justify-content-start{justify-content:start}.lib-justify-content-end{justify-content:end}.lib-ml-20{margin-left:20px}.lib-position-absolute{position:absolute}.lib-z-index-9{z-index:9}.marginright-3{margin-right:3px}@media (min-height: 900px){.lib-chart-wrapper{border-radius:8px}.header-font-size-1{font-size:18px!important}.font-size-1{font-size:14px!important}.font-size-2{font-size:16px!important}.font-size-3{font-size:14px!important}.font-size-4{font-size:22px!important}.font-size-5{font-size:24px!important}}\n"] }]
9923
9861
  }], propDecorators: { containerElt: [{
9924
9862
  type: ViewChild,
9925
- args: ['guagechartcontainer', { static: true }]
9863
+ args: ['plaintrendcontainer', { static: true }]
9926
9864
  }], chartData: [{
9927
9865
  type: Input
9928
9866
  }], customChartConfiguration: [{