In Orange, is there a way for the report viewer to automatically show the visualizations without having to click the report button within the individual widget?
Thanks.
No.
This functionality could be added, but what would trigger adding the report entry? Any change in the widget? Even, for instance, changing transparency in the scatter plot? OK, this would be too extreme - but where's the line? Consider the network widget, where the user zooms in and out... If it is not perfectly clear in what situations is the report generated automatically and when does the user have to click, it's better to have only manual reporting.
Related
I am trying to apply the slicer or filter using Button in Power BI. I have one date column in data and want a button which will slice values for only one date on all visuals in one page.
I have created two bookmarks, one with all values and other with only one date. Bookmarks are working fine ,but when I am I using same bookmarks in Button actions are not doing anything.
Is it possible to use slicer bookmarks with Buttons. Thanks.
I found the reason why bookmark was not working under button. In Power BI Button works with ctrl+click. After adding bookmark to action, ctrl+click on button will do the action.
if anyone has any other solution , please post here.
I have done Shiny dashboard with 4 different tabs in the Side panel. It's all working perfectly fine. The only thing is, the fourth tab is a plotly output. When I click the tab, it should display the entire US county map.
It takes nearly 30 seconds to load the map after the tab button is clicked. Until that the screen just displays the empty body background. Is there anyway I could add a buffering/loading message that gets displayed in the body until the map is loaded? So that the user knows that the map is being loaded.. Thanks
Alternate to the progress bar there are few things you can do in this regard.
library(shinycssloaders)
usage:
withSpinner(plotOutput("my_plot"))
plotOutput("my_plot") %>% withSpinner()
If it takes 30 secs you may want to look into the Asynchronous concept in Rshiny Conference. Joe Cheng talk
probably this is still probably work in progress, but you can find alternate options will be available.
I'm new in JavaFx and i want to display a Bar Chart after choosing a date (for the SQL query) and clicking the button "display chart". I'm wondering if it is possible to display the chart in the same Tab Pane where the button is. What should i write in my button listener? Can anyone help me?
If this is possible, i want also to use the progress indicator while waiting for the result.
I'm not going to write the code for you, but I'll try to address some of the questions you raised.
I'm wondering if it is possible to display the chart in the same Tab Pane where the button is.
Yes, that seems to be what the sample image you provided is already doing.
What should i write in my button listener?
The code to fetch the chart data and display the chart. If you have trouble writing this, you should create an mcve which replicates just the specific thing which is going wrong.
If this is possible, i want also to use the progress indicator while waiting for the result.
See the sample code here, which is a "Sample for accessing a local database from JavaFX using concurrent tasks for database operations so that the UI remains responsive." The sample makes use of a progress indicator.
Aside: For future questions, you might benefit from just asking a single question in a question, providing some source code which replicates any issue you have, subdividing your problem into parts and asking a specific question on just one particular part you are having an issue with (for example displaying items in a bar chart could be a different question from asynchronously retrieving items from a database).
I am denying a user the ability to drop into my tree during certain conditions, it's all going well, but I want to tell the user why I'm denying the drop. I would prefer to do it with a toolTip, but it doesn't seem to work. Can I not have a toolTip during a drag operation? How can I force one?
Flex seems to treat toolTips as a property of the UI component, with the component deciding when and if to show it. I would like it to force it to be like doing one in javaScript where it was always just like saying "Show it now" "stop showing it now"
Does anyone know about doing this during drag?
Thanks
~Mike
What you could try is to show the tooltip yourself with the mx.managers.ToolTipManager. Create for example a VBox that implements mx.controls.ToolTip and displays the message you want to show to the user.
You can see a working example at FlexExamples.
Another idea is to show a programmatic mouse cursor when the drop is denied. I've just read an article about that on Inside Ria.
I have a bit of doubt regarding my application which is being created using Mate framework. The first thing user has to do is to log in, so I created Login.mxml view. After a successful login I need to display the main view with applicationControlBar at the top and a workspace below. At the moment I have two separate views, so if I understand correctly it makes sense using ViewStack.
Thing is, I'd like also to display some kind of panel with buttons on top of the workspace after login - here is screenshot. After clicking on a button the panel should dissapear. To complicate things a little bit more, there is a possibility for this panel to change state. Clicking on a specific button may result in showing progress bar at the bottom of panel.
I feel I should create separate view, MenuDialog.mxml and put there buttons, progress bar and states, but how to display it on the top of the workspace? I hope my problem is clear enough :)
I would make the panel a popUp, with the main application (or the ViewStack's parent container) as the parent of the popUp. You can use the PopUpManager Class to close it based on user actions within the Panel.
Assuming that perhaps you do not want a modal login style panel (which many apps these days eschew) then you should absolutely use states rather than ViewStacks.
States are a much cleaner way to distinguish the various, uh, states that your UI can be in -LOGGED_IN, LOGGED_OUT, etc.
It may take a little to get used to working with states, but once you do, you'll never go back. :-)