Skip to content

Commit 1cc4553

Browse files
committed
Fix - VueUiParallelCoordinatePlot - Pass series shapes into the legend
1 parent 1d3605b commit 1cc4553

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/components/vue-ui-parallel-coordinate-plot.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -506,7 +506,7 @@ const legendSet = computed(() => {
506506
opacity: segregated.value.includes(ds.id) ? 0.5 : 1,
507507
segregate: () => segregate(ds.id),
508508
isSegregated: segregated.value.includes(ds.id),
509-
shape: 'circle'
509+
shape: ds.shape || 'circle'
510510
}
511511
});
512512
});

0 commit comments

Comments
 (0)