D3 API
Chart.Venn
js
import { Chart } from '@semcore/ui/d3-chart';
import { Chart } from '@semcore/ui/d3-chart';
VennChartProps
BaseChartProps<> & {...}Name | Type | Description |
---|---|---|
groupKey | never | |
xScale | ScaleLinear<anyany> | |
yScale | ScaleLinear<anyany> |
Venn
It have children components Circle
, Intersection
.
js
import { Venn } from '@semcore/ui/d3-chart';
<Venn>
<Venn.Circle />
<Venn.Intersection />
</Venn>;
import { Venn } from '@semcore/ui/d3-chart';
<Venn>
<Venn.Circle />
<Venn.Intersection />
</Venn>;
VennProps
& & {...}Name | Type | Description |
---|---|---|
orientation | number | Rotate sets in the chart |
orientationOrder | (c1: number, c2: number) => number | The function for sorting sets inside the chart |