fixed graph label
This commit is contained in:
parent
dd3086e873
commit
94d2586d38
@ -242,7 +242,7 @@ async function drawGraph(baseUrl, isHome, pathColors, graphConfig) {
|
|||||||
const str = content[d.id]?.title ||
|
const str = content[d.id]?.title ||
|
||||||
decodeURI(d.id.charAt(1).toUpperCase() + d.id.slice(2))
|
decodeURI(d.id.charAt(1).toUpperCase() + d.id.slice(2))
|
||||||
.replace("-", " ");
|
.replace("-", " ");
|
||||||
str.slice(0, 30) + str.length > 30 ? "..." : ""
|
str.slice(0, 30) + (str.length > 30 ? "..." : "")
|
||||||
})
|
})
|
||||||
.style('opacity', (opacityScale - 1) / 3.75)
|
.style('opacity', (opacityScale - 1) / 3.75)
|
||||||
.style("pointer-events", "none")
|
.style("pointer-events", "none")
|
||||||
|
Loading…
Reference in New Issue
Block a user