cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
Choose Language Hide Translation Bar
JohannesENS
Level III

Red Triangle - Dashboard

Hello everybody,

 

I´ve got two questions concerning a dashboard (see an image attached):

 

1. I built a dashboard and deleted the text next to he red triangle. The triangle also disappeared. How do I get it back?

 

2. How can I adjust the size of the containers of the panel boxes of a dashboard?

 

Thanks in advance.

 

Johannes

 

Red Triangle.png

1 ACCEPTED SOLUTION

Accepted Solutions
Craige_Hales
Super User

Re: Red Triangle - Dashboard

The red triangle's hot spot is still there even when the outline is not displayed. The mouse cursor should change when over the hot spot.

Outline with red triangle popupOutline with red triangle popup

When the outline's title is removed, the outline hides (which hides the red triangle). If you just need to change a red triangle option, right click where the cursor changes.

If you need the outline title back, with a visible red triangle, try saving the script (from the bottom of the invisible red triangle menu, to a script window) and edit the script:

 

Oneway(
    Y( :height ),
    X( :sex ),
    Means( 1 ),
    Mean Diamonds( 1 ),
    SendToReport(
        Dispatch(
            {},
            "Oneway Analysis of height By sex",
            OutlineBox,
            {Set Title( "" )}
        )
    )
);

to put something like Set Title( "hello" ) back in place. Then run the script.

Adding a title back to the outline.Adding a title back to the outline.

@XanGregg 

 

Craige

View solution in original post

1 REPLY 1
Craige_Hales
Super User

Re: Red Triangle - Dashboard

The red triangle's hot spot is still there even when the outline is not displayed. The mouse cursor should change when over the hot spot.

Outline with red triangle popupOutline with red triangle popup

When the outline's title is removed, the outline hides (which hides the red triangle). If you just need to change a red triangle option, right click where the cursor changes.

If you need the outline title back, with a visible red triangle, try saving the script (from the bottom of the invisible red triangle menu, to a script window) and edit the script:

 

Oneway(
    Y( :height ),
    X( :sex ),
    Means( 1 ),
    Mean Diamonds( 1 ),
    SendToReport(
        Dispatch(
            {},
            "Oneway Analysis of height By sex",
            OutlineBox,
            {Set Title( "" )}
        )
    )
);

to put something like Set Title( "hello" ) back in place. Then run the script.

Adding a title back to the outline.Adding a title back to the outline.

@XanGregg 

 

Craige