Forum Discussion

Adrian_CA's avatar
Adrian_CA
New Member
1 year ago
Solved

Tooltip info

Hello, I'm using Gantt 2.2.3.1 visual, I get this tooltip information

 

Is it possible to change "Visual_Milestone_Name" to just "Name" for instance?

 

Regards

 

Adrián

  • Adrian_CA  Hey

    I will use this measure

     

    DisplayNameTooltip =
    "Name: " & SELECTEDVALUE('YourTable'[MilestoneName])

     

    Given that the label "Visual_Milestone_Name" isn't sourced from your data, it indicates it's defined within the visual's code or default setup. 

     

    Thanks

    Harish M

7 Replies

  • Shahid12523's avatar
    Shahid12523
    Community Champion

    To change "Visual_Milestone_Name" to "Name" in the tooltip:


    - Rename the column in Power BI to "Name"
    or
    - Create a new column like Name = [Visual_Milestone_Name] and use that in the visual
    Some custom visuals may not allow renaming in tooltips—depends on the visual’s settings.

    • Adrian_CA's avatar
      Adrian_CA
      New Member

      Thanks for answer, there is not a "Visual_Milestone_Name" in my data source, I think it came from the visual.

       

      • v-tejrama's avatar
        v-tejrama
        Community Support

        Hi Adrian_CA ,

         

        You’re absolutely correct the Visual_Milestone_Name field isn’t part of your data model.
        It’s generated by the Gantt 2.2.3.1 custom visual. That’s why you can’t locate or rename it within your dataset.

        Since this label is created internally by the visual, it can’t be directly renamed to “Name.” That’s simply how the visual is built to function.

        Here’s how you can address this:

        • Add your own Name column to the Tooltip field well. This allows your preferred field to appear in the tooltip with the correct name.
        • If the current Gantt visual doesn’t let you hide the auto-generated label, you can switch to another Gantt visual from AppSource that offers more flexibility with tooltips.

        In summary, while you can’t rename Visual_Milestone_Name directly, you can still display your own Name field in the tooltip to achieve your goal.

        Thank you,

        Tejaswi.

         

  • Adrian_CA  Hey

    I will use this measure

     

    DisplayNameTooltip =
    "Name: " & SELECTEDVALUE('YourTable'[MilestoneName])

     

    Given that the label "Visual_Milestone_Name" isn't sourced from your data, it indicates it's defined within the visual's code or default setup. 

     

    Thanks

    Harish M