mirror of
https://github.com/heavyai/heavyai-charting.git
synced 2026-01-25 14:57:45 +00:00
[FE-17444][Linemap][Joins] Correct table isn't used for size measure (#663)
This commit is contained in:
parent
f57d057b05
commit
033fd37ff9
2
dist/charting.js
vendored
2
dist/charting.js
vendored
@ -101547,7 +101547,7 @@ function rasterLayerLineMixin(_layer) {
|
||||
}
|
||||
if (_typeof(size) === "object" && (size.type === "quantitative" || size.type === "custom")) {
|
||||
if (groupby.length > 0 && size.type === "quantitative") {
|
||||
fields.push("".concat(state.data[0].table, ".").concat(size.field));
|
||||
fields.push("".concat(size.table || state.data[0].table, ".").concat(size.field));
|
||||
alias.push("strokeWidth");
|
||||
ops.push(size.aggregate);
|
||||
} else {
|
||||
|
||||
@ -199,7 +199,7 @@ export default function rasterLayerLineMixin(_layer) {
|
||||
(size.type === "quantitative" || size.type === "custom")
|
||||
) {
|
||||
if (groupby.length > 0 && size.type === "quantitative") {
|
||||
fields.push(`${state.data[0].table}.${size.field}`)
|
||||
fields.push(`${size.table || state.data[0].table}.${size.field}`)
|
||||
alias.push("strokeWidth")
|
||||
ops.push(size.aggregate)
|
||||
} else {
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user