Hover over an edge to highlight it in the table.
-+
Not all comparisons of this cluster are present. These comparisons are indicated by the
dashed lines.
@@ -31,17 +31,17 @@
To include more comparisons, increase the number of increased comparisons in the CLI.
@@ -238,8 +238,11 @@ const graphData = computed(() => {
y: calculateYPosition(index)
})),
edges: edges.value,
+ /* eslint-disable-next-line @typescript-eslint/no-explicit-any */ // needs to be any since it is defined like that in the library
edgeLineBorderColor: (ctx: any) => getEdgeColor(ctx.raw.source, ctx.raw.target),
+ /* eslint-disable-next-line @typescript-eslint/no-explicit-any */ // needs to be any since it is defined like that in the library
edgeLineBorderWidth: (ctx: any) => getEdgeWidth(ctx.raw.source, ctx.raw.target),
+ /* eslint-disable-next-line @typescript-eslint/no-explicit-any */ // needs to be any since it is defined like that in the library
edgeLineBorderDash: (ctx: any) => getEdgeDashStyle(ctx.raw.source, ctx.raw.target)
}
]
@@ -268,6 +271,7 @@ const graphOptions = computed(() => {
right: xPadding.value
}
},
+ /* eslint-disable-next-line @typescript-eslint/no-explicit-any */ // needs to be any since it is defined like that in the library
onHover: (event: any, elements: any) => {
if (!event) {
hoveredEdge.value = null
@@ -306,18 +310,20 @@ const graphOptions = computed(() => {
})
}
},
- animation: false as false,
+ animation: false as const,
plugins: {
legend: { display: false },
datalabels: {
display: true,
font: {
- weight: 'bold' as 'bold',
+ weight: 'bold' as const,
size: 12
},
+ /* eslint-disable-next-line @typescript-eslint/no-explicit-any */ // needs to be any since it is defined like that in the library
formatter: (value: any, ctx: any) => {
return labels.value[ctx.dataIndex]
},
+ /* eslint-disable-next-line @typescript-eslint/no-explicit-any */ // needs to be any since it is defined like that in the library
align: (ctx: any) => degreeAroundCircle(ctx.dataIndex),
offset: 8,
color: graphColors.ticksAndFont.value
diff --git a/report-viewer/src/components/ClusterRadarChart.vue b/report-viewer/src/components/ClusterRadarChart.vue
index f3ea8df03d..f1a147cc9f 100644
--- a/report-viewer/src/components/ClusterRadarChart.vue
+++ b/report-viewer/src/components/ClusterRadarChart.vue
@@ -10,7 +10,7 @@
>
{{ header }}