Skip to content

Commit 7f0f030

Browse files
committed
updating font and hiding breadcrumb in sunburst chart
1 parent 62078f2 commit 7f0f030

1 file changed

Lines changed: 13 additions & 2 deletions

File tree

src/components/Ontologies/OntologySunburst.vue

Lines changed: 13 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<template>
2-
<highcharts v-if="!loadingData" :options="sunburstOptions" class="mt-6" />
2+
<highcharts v-if="!loadingData" :options="sunburstOptions" />
33
</template>
44

55
<script>
@@ -41,10 +41,16 @@ export default {
4141
borderColor: "#DD7920",
4242
backgroundColor: "#F9F9F9",
4343
height: "100%",
44+
style: {
45+
fontFamily: '"Roboto", "Helvetica", "Arial", sans-serif',
46+
},
47+
},
48+
breadcrumbs: {
49+
enabled: false,
4450
},
4551
title: {
4652
text: "Subject Browser",
47-
style: { color: "#DD7920", fontSize: "26px" },
53+
style: { color: "#DD7920", fontSize: "26px", fontWeight: 500 },
4854
},
4955
subtitle: {
5056
text:
@@ -291,4 +297,9 @@ export default {
291297
text-align: justify;
292298
font-size: 20px;
293299
}
300+
301+
.highcharts-breadcrumbs-group,
302+
.highcharts-button-traverse-up {
303+
display: none !important;
304+
}
294305
</style>

0 commit comments

Comments
 (0)