I have a line chart with legend on my dashboard. I want to show all line on execute. and when i click the legend, it only shows the line i clicked. (not as the default: it remove the line i click)
Can anyone help?
Related
I am using the below code for this, this is present inside a frame and this also clicks the button but after button is clicked the control is lost. The possible reason i see is the page lands on same page which extra options after the "Submit An App" button is clicked.
I am using c# to code it. The first line finds the button the second line clicks but go for a timeout. I have seen this behavior fist time not sure how to work it out.
IWebElement field = VelocityDriver.FindElement(By.Id("AppSub"));
SeleniumExtensions.ClickElementAndContinue(field);
I would like a VBA script that does the following:
Changes all slide Line Spacing to Single
Changes all slide Spacing Before and After to 0
My research online so far hasn't been successful and any test runs have come back with errors.
I discovered a solution that doesn't require VBA/Macros. If using PowerPoint 2016, under the View tab, choose Outline View. Here you can select all the slides with Ctrl + A, and now go to Home, click the small arrow in the Paragraph section and you can change the settings for all slides there. You must be in Outline View mode to do this as otherwise, PowerPoint won't let you change paragraph settings for more than one slide at a time.
I want to hide a graph in qlikview, display it when I want, but not delete it.
Your help is very appreciated
Thank you
Solution on website is not showing, so have included this response.
To show/hide an item in Qlikview, there needs to be a variable in place that can be altered. To create a variable, open the Settings Menu and then select variable overview. I would suggest a name of vShowGraph, create this and then click ok.
To set the variable on screen this can be done by either an input box or by way of button/trigger set on an item. For ease of user, I would suggest using a button.
To create a button, right click on your qlikview sheet anywhere blank, select "new sheet object" and then button.
To link the button to your variable, open the actions tab on the button, click "Add", choose Action Type of "External" and Action of "Set Variable". Enter the variable name (vShowGraph in this example). In the value box enter this script
=if(vShowGraph='Show','Hide','Show')
Your variable and button are now linked, you can now click it and it will change the variable from the values Show and Hide.
To hide your graph using this variable, right click on the graph and open the Layout tab. There is a box called "Show", change the radio button from Always to Conditional and enter the below formula.
=vShowGraph='Show'
Click ok and your graph will disappear if you haven't clicked the button. click the button and it will show.
If you have made any mistakes, you can still select the graph by opening the sheet properties and opening the Objects tab.
I am using IE8
I have created dojo button as below
It has displayed button "Select Files".
Problem
When I click on top border of button its working fine. When I click on any other places on button file picker dialogbox is not displaying.
When I right click on button and select zoom in option once, I am able to click on all the coordinates of button(after selecting zoom option, it works similar to html button).
Note: I have used flash for multiple file selection.
Please tell how to make this button work by clicking in any place.
Have you checked if there is other element's borders in front of the button? Try to check with the developer tools option activated on your browser and select "inspect element" (or similar). If another element is detected when you hover over the button, you have your answer.
Apart from that I have no more ideas.
I'm working on a VB powerpoint tool. From Powerpoint Normal View when I select (click) a slide in the Left-hand Pane, if I don't click on the Slide Pane (the pane displaying a large view of the current slide), this Code line will not work.
Application.ActivePresentation.Windows(1).PointsToScreenPixelsY(0)
I got the following error message : "DocumentWindow(unknown member) : Illegal value."
Is there a way with VB to click on the Slide Pane?
I know it's late, but just in case anyone else lands here like me for the same problem, here is how to solve it:
If ActiveWindow.ViewType = PpViewType.ppViewNormal AndAlso Then
ActiveWindow.Panes(2).Activate()
End If
That is, you must activate the main slide pane (not the list of slides) before performing any actions, e.g. selection.