Forum Discussion

Likhitha's avatar
Likhitha
Icon for Helper IV rankHelper IV
5 years ago
Solved

Dynamic Axis Titles for Scatter chart

Hello All, I'm having a scatter chart where the values change are dynamic. I want X-Axis and Y-Axis Titles to be (dynamic) and to be changed as per selection. I'm attaching pic for reference,If I ...
  • Anonymous's avatar
    Anonymous
    5 years ago

    Hi Likhitha ,

     

    To my knowledge , your requirement could not be fulfilled currently. 

    If you also want this in power bi, let the power bi community to know this things and give your votes at power bi site's feedback - 

    https://ideas.powerbi.com/ideas/idea/?ideaid=086bbce8-1e74-4c31-a3df-59f6e5ee4b16

    https://ideas.powerbi.com/ideas/idea/?ideaid=d4ca40d4-ef7e-4a48-b417-f359e93b8fb7

     

    All I could do is to

    1. Create measures for X-axis ,Y-axis, Title separately:

    title Measure =
    SWITCH ( SELECTEDVALUE ( ForSlicer[Slicer] ), "A/B", "A/B", "X/Y", "X/Y" )
    x-axis = LEFT(SELECTEDVALUE(ForSlicer[Slicer]),1)
    y-axis =
    RIGHT ( SELECTEDVALUE ( ForSlicer[Slicer] ), 1 )

    2. Display measures using Card visual to cover the original axises in Scatter chart

    3. Group all visuals

    Here is the pbix file.

     

    If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

     

    Best Regards,
    Eyelyn Qin