How to display both the label and value in the exported map

Zabih
Zabih New Altair Community Member
edited November 2024 in Community Q&A
Hi guys, need help urgently. 

I am trying to show both the province label as wells as the value on the map before exporting it in jpeg format. However, I can only see the values in the interactive mode (as an example, Hirat province where I can only see the numerical values in the interactive mode alone). Can you guys please help?
Tagged:

Best Answer

  • Caperez
    Caperez Altair Community Member
    Answer ✓
    Hi @Zabih

    Tooltip is a dynamic element and is not possible to display all them at the same time ( as far I know)
    other option is to use a trick to display more information with labels. 
    What you can do is to introduce a little piece of code into Plot style->Labels style->.
    Rapidminer is based in Highcharts so using the point class is possible to add more information into the graphs. 
    in this case I used {point.x}:{point.name}

    Best

    Cesar


Answers

  • Caperez
    Caperez Altair Community Member
    Answer ✓
    Hi @Zabih

    Tooltip is a dynamic element and is not possible to display all them at the same time ( as far I know)
    other option is to use a trick to display more information with labels. 
    What you can do is to introduce a little piece of code into Plot style->Labels style->.
    Rapidminer is based in Highcharts so using the point class is possible to add more information into the graphs. 
    in this case I used {point.x}:{point.name}

    Best

    Cesar


  • Zabih
    Zabih New Altair Community Member
    Thanks a lot @ceaperez. I used {point.value}:{point.name} and it worked. Cheers!