Change infinity value to min value and change color to corect default color

This commit is contained in:
ArtemDzhereleiko 2021-09-27 11:49:15 +03:00
parent a83f328092
commit b96dd3e78b
2 changed files with 5 additions and 5 deletions

View File

@ -190,7 +190,7 @@ export const digitalGaugeSettingsSchema: JsonSettingsSchema = {
} }
}, },
fixedLevelColors: { fixedLevelColors: {
title: 'The colors for the indicator using boundary values in percents', title: 'The colors for the indicator using boundary values',
type: 'array', type: 'array',
items: { items: {
title: 'levelColor', title: 'levelColor',
@ -214,7 +214,7 @@ export const digitalGaugeSettingsSchema: JsonSettingsSchema = {
type: 'string' type: 'string'
}, },
value: { value: {
title: '[From] Value, % (if predefined value is selected)', title: '[From] Value (if predefined value is selected)',
type: 'number', type: 'number',
default: 0 default: 0
} }
@ -238,7 +238,7 @@ export const digitalGaugeSettingsSchema: JsonSettingsSchema = {
type: 'string' type: 'string'
}, },
value: { value: {
title: '[To] Value, % (if predefined value is selected)', title: '[To] Value (if predefined value is selected)',
type: 'number', type: 'number',
default: 100 default: 100
} }

View File

@ -285,8 +285,8 @@ export class TbCanvasDigitalGauge {
const predefineLevelColors: ColorLevelSetting[] = []; const predefineLevelColors: ColorLevelSetting[] = [];
predefineLevelColors.push({ predefineLevelColors.push({
value: -Infinity, value: this.localSettings.minValue,
color: this.ctx.data[0].dataKey.color color: this.localSettings.gaugeColor
}); });
function setLevelColor(levelSetting: AttributeSourceProperty, color: string) { function setLevelColor(levelSetting: AttributeSourceProperty, color: string) {