Skip to content
Snippets Groups Projects
Commit 815ad35b authored by LIOTIER MARION's avatar LIOTIER MARION
Browse files

scatter plot : tooltip with pathway name

parent 39dbf3df
No related branches found
No related tags found
No related merge requests found
Pipeline #203800 passed
......@@ -85,9 +85,9 @@ const bubbleChartOptions = computed(() => {
tooltip: {
position: "top",
formatter: function (params) {
let str =
"<h5>" + params.value[3] + "</h5><br />" + props.choiceBiodata ==
"METABOLITES"
let str = params.value[3] + "<br />";
str +=
props.choiceBiodata == "METABOLITES"
? "Number of metabolites : "
: "Number of reactions : " + params.value[2] + "<br />";
switch (props.valueType) {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment