|
|
@@ -83,7 +83,7 @@ function tableConfig(model, theme) {
|
|
|
if(title) {
|
|
|
title.style = parseObjectStr(title.style || '{}');
|
|
|
}
|
|
|
- return {
|
|
|
+ let c = {
|
|
|
type: 'table',
|
|
|
config: {
|
|
|
fontSize: fontSize || getFontSize(),
|
|
|
@@ -109,7 +109,9 @@ function tableConfig(model, theme) {
|
|
|
rowsStyle: parseObjectStr(rowsstyle),
|
|
|
},
|
|
|
layout: getLayout(layout)
|
|
|
- }
|
|
|
+ };
|
|
|
+
|
|
|
+ return c;
|
|
|
}
|
|
|
|
|
|
function barConfig(model, theme) {
|