How to add tooltip on dashboard

Hi all,
How can I add tooltip on Dashboard (shown in picture)? I have tried this by adding Comment on dashboard while creating it. But It did not show comment just name of dashboard in tootip.
http://img686.imageshack.us/img686/5295/tooltip.png
Thanks all

Hi
Add description in Description field, of properties for dashboard.
Regards
Kishore Guggilla

Similar Messages

  • How to add tooltip to images?

    How to add tooltips to images?

    OK, here is a more robust, more generic (any node) implementation.
    It would be nice if I could find a way to automatically insert the tooltips in the scene, but at time of node with tooltip creation, scene doesn't exist yet... Should have a post-layout event, perhaps. Or I can do that once on the onMouseEntered event, but then I have to find a way to get the scene holding a given node. Tried to iterate on Parents, but I can't cast a Parent to a Scene?
    Anyway, here is the new code:
    Tooltip.fx
    public class Tooltip extends CustomNode
      public var text: String;
      public var fill: Paint = Color.web('#EEFF00');
      public var stroke: Paint = Color.GREEN;
      var label: Label; // Make public to access textOverrun, textWrap, etc.?
      var back: Rectangle;
      override function create(): Node
        label = Label
          text: text
        back = Rectangle
          x: -2, y: -1
          width:  label.width + 4
          height: label.height + 2
          fill:   fill
          stroke: stroke
        Group
          content: [ back, label ]
      init
        visible = false;
        layoutInfo.managed = false;
    WithTooltip.fx
    public mixin class WithTooltip
      /** The tooltip to display. */
      public var tooltip: Tooltip;
      // We display the tooltip after a while being over the node
      var tooltipTL = Timeline
        keyFrames: KeyFrame
          time: 750ms
          action: function ()
    //~         println("visible {%.0f tooltip.boundsInParent.minX} {%.0f tooltip.boundsInParent.minY}");
            tooltip.visible = true;
      var baseMouseMoved;
      var baseMouseEntered;
      var baseMouseExited;
      postinit
        var tooltipNode = this as Node;
        baseMouseMoved = tooltipNode.onMouseMoved;
        tooltipNode.onMouseMoved = function (evt: MouseEvent): Void
          if (not tooltip.visible)
            tooltip.translateX = evt.sceneX;
            tooltip.translateY = evt.sceneY - 20;
          baseMouseMoved(evt);
        baseMouseEntered = tooltipNode.onMouseEntered;
        tooltipNode.onMouseEntered = function (evt: MouseEvent): Void
    //~       println("onMouseEntered: {%.0f evt.sceneX} {%.0f evt.sceneY}");
          tooltipTL.playFromStart();
          baseMouseEntered(evt);
        baseMouseExited = tooltipNode.onMouseExited;
        tooltipNode.onMouseExited = function (evt: MouseEvent): Void
    //~       println("onMouseExited");
          tooltipTL.stop();
          tooltip.visible = false;
          baseMouseExited(evt);
    SomeStage.fx
    class ImageWithTooltip extends ImageView, WithTooltip
    var earthTT = Tooltip { text: "Mother Earth" }
    var earth = ImageWithTooltip
         image: Image { url: "{__DIR__}earth.png" }
         tooltip: earthTT;
    var mapTT = Tooltip { text: "General map of France" }
    var map = ImageWithTooltip
         image: Image { url: "{__DIR__}map.jpg", width: 200, preserveRatio: true }
         tooltip: mapTT;
    // Put the ImageWithTooltip nodes in layout if needed, put the Tooltip nodes at the end of the scene (on top, out of any layout).

  • How to add Tooltip to the Iview name.

    hi all,
         I have to add tooltips to the iview name. When I bring the mouse over the iview
         name a message should display as the tooltip describing the purpose of the
         iview I am not able to found the tooltip option in the iview properties.
         Is there any coding involved for tooltips option or any other options available.
         Please guide me. Looking for the fast reply.
         Thanks in advance.
    Ponnusamy.P

    hi Deepti,
         When I gave the descripition, tool tip appears in the
         Content Admin -> Portal Content -> (Under the folder I have created the Iview).
         But the tool tips should appear in the iview when I display that iview to the end
         user.How to make that possible.
    Thanks
    Ponnusamy P

  • How to add month to dashboard header?

    Hi Experts,
    we have calmonth coming from a cube and that is supplied to a query and this query is the source for the dashboard. i need to add calmonth to dashboard header ? please give ur inputs..
    we are broadcasting to portal with bex broadcaster settings.
    points will be assigned.
    Thanks

    You can place rectangle in header section on master page which would be applied on sub pages and then fill rectangle with color.
    If you are after a specific color then simply use color code and fill.
    Thanks,
    Sanjit

  • How to add tooltip to jframe title?

    hi all
    does anyone knows how can i set tooltip for jframe title?
    thanks

    Since it's a slow Saturday and I'm in a good mood...import darrylbu.util.SwingUtils;
    import javax.swing.*;
    public class FrameTitleToolTip {
       public static void main(String[] args) {
          JFrame.setDefaultLookAndFeelDecorated(true);
          SwingUtilities.invokeLater(new Runnable() {
             @Override
             public void run() {
                new FrameTitleToolTip().makeUI();
       public void makeUI() {
          JFrame frame = new JFrame();
          frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
          frame.setSize(400, 400);
          for (JComponent component : SwingUtils.getDescendantsOfType(JComponent.class,
                frame)) {
             if (component.getClass().getName().contains("MetalTitlePane")) {
                component.setToolTipText("Tooltip for frame title bar");
                break;
          frame.setLocationRelativeTo(null);
          frame.setVisible(true);
    }You can get the SwingUtils class [_here_|http://tips4java.wordpress.com/2008/11/13/swing-utils/]
    db

  • How to add tooltip to pie chart?

    Hello forum,
    can I show a tooltip on mouse hover on pie of chart?
    Thanks in advanced

    Solved.
    For each data:
    Tooltip toolTip = new Tooltip();
    toolTip.install(data.getNode(), toolTip);
    toolTip.setText(data.getPieValue() + "%");

  • How to add a new filter in existing BIWS (WEBI) for dashboard consumption

    Hello Experts, we have 7 web service query's connected to a dashboard. Basically it is one WSDL URL and 7 Get Methods...Web service queries are BIWS (via WEBI document instance). There are filters setup for each of these web service methods.
    Recently there was a request to add 2 new fields to the webi document and also the 2 fields need to be included as filters in the 7 methods. I know there is an option to edit the method, but when i edit the method, i cannot find the 2 new fields in list to set as filters.Can anybody help me understand how to add filters to an existiing web service method? I do not want to delete the method and republish the block as web service.
    Any help will be great and points rewarded.
    Thank you
    Ann

    Hi Ann,
    You can create a new WebServices or modify the document block on which the webservices is published.
    Once the block is modified you might be able to see the new objects in the filters.
    Thanks,
    Amit

  • How to add different columns in a single dashboard prompt?

    Hi
    I am new to this forum. I got a new requirement, my client is asking me to show multiple columns with multiple tables in a single dashboard prompt
    for Ex: Column name Table name
    1. Customer 1. Customer Details
    2. Market 2. Region
    3. Order 3. Order Status
    4. Product 4. Product Type
    He wants to show all these column names in a single prompt when user click on the particular column name it should appear on report. Is it Possible? if possible tell me how?

    See this thread...
    Re: How to add new columns by using Multiselect

  • How to add a Totals row in a dashboard

    Oracle Business Intelligence 11.1.1.6.4
    Hi there gurus,
    I would like to know how to add a totals row at the end of a pivot table within a dashboard. Notice that the column I need to sum up is a measure column and not a dimension one.
    Thank a lot.

    Alejandro Trejo wrote:
    Oracle Business Intelligence 11.1.1.6.4
    Hi there gurus,
    I would like to know how to add a totals row at the end of a pivot table within a dashboard. Notice that the column I need to sum up is a measure column and not a dimension one.
    Thank a lot.What do you mean? That's what you would always expect to aggregate. Click the sigma sign on the Rows section and it will sum up the measures column. If not, add the aggregation rule to the measure column. Otherwise, explain IN DETAIL what you did, don't assume that what you did was correct.

  • How to add a new filter in an existing web service method (BIWS - WEBI document)

    Hello Experts, we have 7 web service query's connected to a dashboard. Basically it is one WSDL URL and 7 Get Methods...Web service queries are BIWS (via WEBI document instance). There are filters setup for each of these web service methods.
    Recently there was a request to add 2 new fields to the webi document and also the 2 fields need to be included as filters in the 7 methods. I know there is an option to edit the method, but when i edit the method, i cannot find the 2 new fields in list to set as filters.Can anybody help me understand how to add filters to an existiing web service method? I do not want to delete the method and republish the block as web service.
    Any help will be great and points rewarded.
    Thank you
    Ann

    Hi Ann,
    The reason you are not able to see any of the new columns as a option to select in your web service block is because when you have published that block, they were not present. Add these two new objects in your block and publish it again. You will be prompted for duplication content. Select the highlighted block for duplicate and now you can see the new added objects in the filter option. Update and this will overwrite your published block. Please note, web services do appear to behave weirdly when used with dashboards so I request you to please try it in a separate test report first.
    Hope that helps.
    Regards,
    Tanisha

  • How to add a new universe in population for Predictive Analysis

    Post Author: izhar
    CA Forum: Performance Management and Dashboards
    Hi all members I am working on BOXI R2, SP2 I have to ask that, How to add a new universe in population for "Predictive Analysis". Currently i can only view universe of "Direct Customers and Direct Products"
    Any member please help me hereRegards Izhar

    Hi Anne,
    It really depends on how your portal is set up. And there are 101 ways this could have been done.
    I've used the Home Page Framework as an easy to define and extend framework to show applications. I've used it both for ESS and MSS, Using the HPF requires that an application has an iView in the portal.
    The main point to be made here is that this is not a Web Dynpro ABAP specific question - but rather one about MSS portal implementation - you would probably be better posting a question in either one of the ESS/MSS or Portal forums.
    As it is not a WDA specific question, I'd ask that you kindly close this thread and reopen in another forum.
    Thanks for your understanding, it would be nice to be able to answer all questions in all forums (perhaps with some sort of tagging system) but currently forum rules are that questions must be specific to the forum posted.
    Thanks,
    Chris

  • Sharepoint PPS how to create folder in dashboard designer

    Please bear with me as i am kind of new to PPS
    I am not able to understand how the folder are organized in dashboard designer as i could not find a way to create a new Folder. If i want to create a new page in the dashboard and organize KPI, Scorecards and Reports in seperate folders how do i do that?
    also not sure how the properties are created in scorecard when you select scorecard on left side in dashboard designer the right vertical window shows properties how to add or edit it?
    Basically my requirement is create a new page a create KPI's Scorecard including all the KPI's and then create a detail report below scorecard when someone clicks on scorecard it would take all the cell level parameters and show the details in the detail
    report? any help is greatly appreciated.

    Hi,
    As for your other requirement,you need to follow the below steps.
    You need to create a KPI details report .Then on the Dashboard ,drag your scorecard and KPI details report that you created next to the scorecard.Now,click on create connection
    option of your KPI details report (located somewhere to the right ), a window pops up.Now,in the
    Items tab ,under the Get Values from  Option choose the name of your scorecard from the dropdown options.On the
    Values Tab,Under the Source Value option select
    Cell:Context option.Click ok.

  • How to add Image dynamically in Webdynpro ABAP

    Hi Experts,
    How to add Image dynamically in Webdynpro ABAP.
    My requirement is i maintain all the images in a table.
    image source has to pick the table URl dynamically and display.
    is that possible in webdynpro?
    and also please give the suggesion,
    without using MIME objects is that anyway to get images?
    Thanks in advance.
    Regrads,
    Jeyanthi

    Hi,
      are those icons wou want to display then. he following code will be useful.
    data : lo_IMG type ref to CL_WD_IMAGE.
    LO_IMG = cl_wd_IMAGE=>new_IMAGE( id = img_id SOURCE = 'ICON_BW_APD_TARGET' tooltip = sts_tltp ).
    lo_cont->add_child( the_child = lo_img ).
    here lo_cont is the container where you want to add the image dynamically and source is the attribiute through which you can change the ICON image. this thing you can getit from data base table and change accordingly.
    Regards,
    Anil kumar G

  • How to add new universe in "Set Analysis"

    Post Author: izhar
    CA Forum: Performance Management and Dashboards
    Hi, dear all members
    I am working on BOXI R2, SP2
    I have to ask that, how to add a new universe in "Set Analysis" so that i can do operation on the desired universe.
    Currently by default "Direct Customers" universe are shown with following sets.
    1. Gold Customers 2. Platinum Customers3. Signature4. Silver Customers
    Kindly any member guide me here for the operation of "Set Analysis". I am very new on it
    Regards,Izhar

    Post Author: izhar
    CA Forum: Performance Management and Dashboards
    Hi, dear all members
    I am working on BOXI R2, SP2
    I have to ask that, how to add a new universe in "Set Analysis" so that i can do operation on the desired universe.
    Currently by default "Direct Customers" universe are shown with following sets.
    1. Gold Customers 2. Platinum Customers3. Signature4. Silver Customers
    Kindly any member guide me here for the operation of "Set Analysis". I am very new on it
    Regards,Izhar

  • How to add multiple desktop on mac os x?

    On my previous version of Mac OS X I was able to add as much desktops I want by just going into upper right corner with my pointer and clickin on the sign +. Now, after replacing my SSD and installing new OS I don't have that option. Does anyone knows how to add desktops on Mac OS 10.7.5? Thank you

    Mission Control – Work in Multiple Spaces  
    If you want to keep the desktops in a specific order, go to System Preferences/Mission Control and uncheck the box " Automatically rearrange spaces based on most recent use." You can also select the box below that so if you open an application, you'll be taken to that space.
    If you want to cut down the number of desktops, there is also an option to remove the Dashboard as a desktop and have it work like it did in Snow Leopard. That can be set in System Preferences/Mission Control by deselecting Show Dashboard as a  space. You can access the Dashboard by clicking on the Dashboard icon in the dock or using the FN 12 key.

Maybe you are looking for

  • Problem loading resources file in JSP using f:loadBundle

    Hi, We are facing problem while loading our properties file in JSP using f:loadBundle.we tried the following way <f:loadBundle basename="resources.ApplicationResource" var="msg"/> This properties file is src java folder and also in WEB-INF-->classes-

  • FIXME: IOUnserialize message swamping the console

    Okay, has anyone got an idea if this is a potential problem other than the log file size? I've gotten this message every couple seconds all morning. I never noticed it before today.Recently partitioned my drive for Boot Camp, could that have somethin

  • Request aborted by user calling an Oracle Web Service

    Hi I'm using JDeveloper 10.1.2 to create my web services and web service stubs. I have a web application that uses the web service stubs to call the Business Logic that is exposed as Web Services. I'm getting the following intermittent error: IOExcep

  • OS 9 Compatability

    This question is asked on the off chance that I'm missing something. I cannot get this eMac to boot from anything that has OS 9 on it; Retail CD, or Firewire Hard drive (all 9.2.2). eMac 1000mhz currently running 10.4.11 Are there some of these machi

  • Why does my generation 1 ipad keep dropping off

    Why does my ipad keep dropping off. It is generation 1.