sea-chart 1.1.61 → 1.1.62
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -1148,12 +1148,14 @@ SQLStatisticsUtils.combinationSQLResult2Javascript = async (chart, sqlRows, char
|
|
|
1148
1148
|
name: key,
|
|
1149
1149
|
value_left: value,
|
|
1150
1150
|
value_right: valueRight,
|
|
1151
|
+
rows: [item],
|
|
1151
1152
|
group_name: groupName,
|
|
1152
1153
|
// for multiple numeric_columns, color is defined by group_name
|
|
1153
1154
|
color: STYLE_COLORS[0].colors[index % 12]
|
|
1154
1155
|
});
|
|
1155
1156
|
} else {
|
|
1156
1157
|
const itemRow = result[itemIdx];
|
|
1158
|
+
itemRow.rows.push(item);
|
|
1157
1159
|
itemRow.value_left = itemRow.value_left + value;
|
|
1158
1160
|
itemRow.value_right = itemRow.value_right + valueRight;
|
|
1159
1161
|
}
|
|
@@ -1172,6 +1174,7 @@ SQLStatisticsUtils.combinationSQLResult2Javascript = async (chart, sqlRows, char
|
|
|
1172
1174
|
name: key,
|
|
1173
1175
|
value_left: value,
|
|
1174
1176
|
value_right: valueRight,
|
|
1177
|
+
rows: [item],
|
|
1175
1178
|
group_name: groupName,
|
|
1176
1179
|
color: STYLE_COLORS[0].colors[index % 12]
|
|
1177
1180
|
});
|