Forum Discussion

Master_T's avatar
Master_T
Helper I
4 years ago
Solved

Custom visuals: show/hide/change the visual's Title from code

Hello everyone

I'm developing a custom visual for power bi, and I have a specific requirement: I would like to change the visual's title settings from code. I'm talking about these settings here, that are common to all visuals:

 

Is there a way to change these settings from the visual's code? I've tried manipulating the HTML directly, but unfortunately the title is outside the visual's sandbox, so I can't change it from my code.

Is there any other way to manipulate the title, other than manually changing the settings in the properties panel?

  • dm-p's avatar
    dm-p
    4 years ago

    This is how I would approach - there are no visual APIs for any of properties that affect the visual "container" (iframe), as opposed to the "content".

    For reference, the properties you cannot enumerate or access are anything you can see under the 'General' category of the new Visualization pane layout:

    If you need any functionality for these property menus, you will need to make a request for the visuals team  to create an API method for what you want to do.

    Regards,

    Daniel

4 Replies

    • dm-p's avatar
      dm-p
      Super User

      This is how I would approach - there are no visual APIs for any of properties that affect the visual "container" (iframe), as opposed to the "content".

      For reference, the properties you cannot enumerate or access are anything you can see under the 'General' category of the new Visualization pane layout:

      If you need any functionality for these property menus, you will need to make a request for the visuals team  to create an API method for what you want to do.

      Regards,

      Daniel

      • Master_T's avatar
        Master_T
        Helper I

        Ok, so apparently it can't be done. I suspected that but I needed confirmation, thank you for providing it.