Merge pull request #731 from MrRamka/bugfix/legend-creation

Fixed "size" mapping legend creation
This commit is contained in:
Ramil Minyukov 2021-09-03 16:11:46 +03:00 коммит произвёл GitHub
Родитель 6afb3875eb 6a351122f7
Коммит 078daad6bf
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
1 изменённых файлов: 5 добавлений и 0 удалений

Просмотреть файл

@ -1031,6 +1031,11 @@ export class AppStore extends BaseStore {
properties.axis.side = "opposite";
break;
}
case "size": {
targetAttributes = ["x1", "y1", "x1", "y2"];
properties.axis.side = "default";
break;
}
}
}
legendAttributes.forEach((attribute, i) => {