diff --git a/ui-ngx/src/app/modules/home/components/widget/lib/digital-gauge.models.ts b/ui-ngx/src/app/modules/home/components/widget/lib/digital-gauge.models.ts index 3cf768668d..cb07183415 100644 --- a/ui-ngx/src/app/modules/home/components/widget/lib/digital-gauge.models.ts +++ b/ui-ngx/src/app/modules/home/components/widget/lib/digital-gauge.models.ts @@ -190,7 +190,7 @@ export const digitalGaugeSettingsSchema: JsonSettingsSchema = { } }, fixedLevelColors: { - title: 'The colors for the indicator using boundary values in percents', + title: 'The colors for the indicator using boundary values', type: 'array', items: { title: 'levelColor', @@ -214,7 +214,7 @@ export const digitalGaugeSettingsSchema: JsonSettingsSchema = { type: 'string' }, value: { - title: '[From] Value, % (if predefined value is selected)', + title: '[From] Value (if predefined value is selected)', type: 'number', default: 0 } @@ -238,7 +238,7 @@ export const digitalGaugeSettingsSchema: JsonSettingsSchema = { type: 'string' }, value: { - title: '[To] Value, % (if predefined value is selected)', + title: '[To] Value (if predefined value is selected)', type: 'number', default: 100 } diff --git a/ui-ngx/src/app/modules/home/components/widget/lib/digital-gauge.ts b/ui-ngx/src/app/modules/home/components/widget/lib/digital-gauge.ts index e82eb7ab29..190cb1bcd7 100644 --- a/ui-ngx/src/app/modules/home/components/widget/lib/digital-gauge.ts +++ b/ui-ngx/src/app/modules/home/components/widget/lib/digital-gauge.ts @@ -285,8 +285,8 @@ export class TbCanvasDigitalGauge { const predefineLevelColors: ColorLevelSetting[] = []; predefineLevelColors.push({ - value: -Infinity, - color: this.ctx.data[0].dataKey.color + value: this.localSettings.minValue, + color: this.localSettings.gaugeColor }); function setLevelColor(levelSetting: AttributeSourceProperty, color: string) {