Forum Discussion

NithinBN's avatar
NithinBN
Icon for Helper II rankHelper II
6 years ago
Solved

Display values in Tool Tip.

Hello,

This is my Table and  have made chart out of that table.

IDProductValue
P-01BikeGreen
P-02BikeYellow
P-03BikeGreen
P-04BikeRed
P-05BikeGreen
P-06ClothingYellow
P-07ClothingGreen
P-08ClothingRed
P-09ClothingRed
P-10ClothingGreen
P-11OthersYellow
P-12OthersYellow
P-13OthersRed
P-14OthersGreen
P-15OthersGreen
 
 
 

Tool Tip

 

Here in tool tip its only showing P-11, how to show all the values that made that bar, in this case both "P-11" and "P-12".

Thanks

  • NithinBN - Create a measure for your tooltip like this:

    Measure =
      CONCATENATEX(
        DISTINCT(
          SELECTCOLUMNS('Table',"ID",[ID])
        ),
        [ID],","
      )

    Use that for your Tooltip.