Merge branch 'v1.8' of github.com:dataease/dataease into v1.8

This commit is contained in:
taojinlong 2022-03-02 16:09:25 +08:00
commit b4a42d7545
2 changed files with 13 additions and 1 deletions

View File

@ -448,3 +448,9 @@ RETURN oTemp;
END
;;
delimiter ;
delete from chart_view where id in (
'ce33ad2c-3915-41cc-8d86-55405456ed05',
'd73eda10-68c9-40e2-b03a-a7cbe3e5b365',
'de923e69-df6b-4f61-9391-da2987f77b51'
);

View File

@ -112,7 +112,13 @@ export function getLabel(chart) {
if (l.show) {
if (chart.type === 'pie') {
label = {
type: l.position
type: l.position,
autoRotate: false
}
} else if (chart.type.includes('line')) {
label = {
position: l.position,
offsetY: -8
}
} else {
label = {