mirror of
https://github.com/dataease/dataease.git
synced 2025-02-24 19:42:56 +08:00
Merge branch 'v1.8' of github.com:dataease/dataease into v1.8
This commit is contained in:
commit
b4a42d7545
@ -448,3 +448,9 @@ RETURN oTemp;
|
|||||||
END
|
END
|
||||||
;;
|
;;
|
||||||
delimiter ;
|
delimiter ;
|
||||||
|
|
||||||
|
delete from chart_view where id in (
|
||||||
|
'ce33ad2c-3915-41cc-8d86-55405456ed05',
|
||||||
|
'd73eda10-68c9-40e2-b03a-a7cbe3e5b365',
|
||||||
|
'de923e69-df6b-4f61-9391-da2987f77b51'
|
||||||
|
);
|
||||||
|
@ -112,7 +112,13 @@ export function getLabel(chart) {
|
|||||||
if (l.show) {
|
if (l.show) {
|
||||||
if (chart.type === 'pie') {
|
if (chart.type === 'pie') {
|
||||||
label = {
|
label = {
|
||||||
type: l.position
|
type: l.position,
|
||||||
|
autoRotate: false
|
||||||
|
}
|
||||||
|
} else if (chart.type.includes('line')) {
|
||||||
|
label = {
|
||||||
|
position: l.position,
|
||||||
|
offsetY: -8
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
label = {
|
label = {
|
||||||
|
Loading…
Reference in New Issue
Block a user