Argo ui steps display - argo-workflows

Can we hide display of green circle in Argo ui for a particular step/templates? Reason for doing this is: when templateref is used I get two circles each one for calling template step and called template step respectively.

Related

Set visual interaction within charts in Qlik Sense

I have two drill down bar chart in a container, within one drill down chart I need to select a bar and a pivot table below it needs to be get filtered according to that selection and all other chart should remain unfiltered just like the way we set interaction in power bi. I found a way but it is not working I have written the steps below -
Master items - Alternate states - Create new
Create an alternate states and then drag and drop to the charts which needs to be updated, I have also applied a formula in the measure, but non of them are working, like -
= Sum({[alternate_name]}Amount)
Please guide me over this.
This is a tough one because Master Items can't use alternate states (or at least Master visualizations can't) outside of referencing them in set analysis, as you tried (See the Limitations section of this Qlik Help page). In your example =Sum({[alternate_name]} Amount), you probably found that the selecting the bars was still affecting everything else but selecting in the pivot table was filtering the bar chart.
What you'll need to do here is to create that second bar chart within the container itself, rather than creating a Master visualization. When you're adding a chart to a container, you have the option of either using a Master Visualization or just creating a chart within the container itself (see this screenshot here). When you create a chart within a container, you have the ability to apply an Alternate State.
Here's a GIF of me using this setup.

SAPUI5 - network graph label on line between nodes

I checked the documentation of SAPUI5 Line controller of a network graph, yet I didn't find a way to a add a label in or within a line. Is something like this even possibel in SAPUI5?
expected result image
Edit:
And I'm not meaning the focus or the hover functionality.

JIRA screen for specific status

What I am trying to achieve is, that I can use a specific screen for some status. For example just tickets in the status "New" should contain the "Original Estimate".
What I thought about was building a specific screen for these status and match status and screen. But as I see things, I just can connect screens and transitions or connect a screen to an action like creating an issue.
But both does not fit my needs, cause i want to use different screens in the same workflow for the same action and I do not want to show the screen when changing the transition. I just want to display different screens when editing issues.
Is there a way to do that?
for this kind of scenario I can suggest two ways to do this.
use javascript for a Original Estimate field..for that follow this document using this you can check the status field and show or hide the field accordingly.
2.Use Behaviours plugin for validate the field where the status is match to your requirement.

How do I get a chart to redraw itself when the model is paused?

I have a Time Stack Chart whose data set can be changed by clicking on a radio button. While the model is running, the chart instantaneously updates its appearance when a radio button is clicked. When the model is paused, however, the chart's area becomes blank when a radio button is clicked; the legend, in contrast, updates automatically. How do I manually force the chart area to redraw itself?
When you pause a model, only a part of Anylogic is actually paused. The thread that handles the GUI keeps running, which is why you can navigate around in the model while it is paused.
This also means that if you try to update a chart's data while the simulation is paused, the appearance will refresh but -- as your data is being updated in another thread that is currently paused -- it will not have received that data.
If you want to pause the simulation and still be able to switch the data being displayed in a chart, you could take a look at the Airport example model. It provides a good method to switch between different charts by making them visible/invisible and adjusting the width, height, x and y. Essentially, you make all of the charts you need, overlap them perfectly, and then make visible the one that is currently of interest to you.
If you want to create the charts programmatically, on top of creating the chart with, e.g., new TimeStackChart(...), you also have to add it to the top level presentation group with main.presenation.add(...). If you don't do this, the chart will never appear in the model as the model won't have anything to display! To find more information on how to create a chart programmatically, make a chart in Main and then open Main in the Java editor. Find the chart you created, take a look at it's constructor (there are a lot of arguments!), and use it as rough template for the charts you wish to create. The Help documentation will further make sense of the parameters you see.
have you tried the chart.refresh(); method?
Also try to update the embedding agent using agent.onChange().
hope that helps
I encountered the exact same problem, and came up with workaround.
Try this, which I know works in AnyLogic v7:
if (getEngine.getState() == getEngine().PAUSED ){
dynChart.setSelectedItemIndices( new int[]{0} );
dynChart.setSelectedItemIndices( null );
}
I was able to get the chart to refresh manually when paused or finished by selecting/deselecting one of the legend items. I spent a few hours try out API variations to no avail, so I just emulated what was actually working in the UI and it worked.
I am dynamically generating a text item as the chart title, but I have not had the same luck getting the text to refresh when paused like the chart. Any ideas on that one?

Google Charts API value misaligned

I am using the Google Chart API to display some game outcomes, however, the highest value always shows up aligned to the edge within the green bar instead of above the bar (or at least with some padding between the top and the text).
I use the following URL to generate the chart:
[http://chart.apis.google.com/chart?cht=bvs&chd=t:14.1,2.1&chp=1.57079633&chs=300x155&chl=|&chco=43A443|D53030|3B74CA|FFDC00&chf=bg,s,00000000&chbh=70&chds=0,14&chm=N*0,FFFFFF,0,-1,20,,ve::15&chp=10][1]
This generates a chart that looks like the following (I need 2 more rep on SO to post images, can someone please edit to include this image?):
![http://chart.apis.google.com/chart?cht=bvs&chd=t:14.1,2.1&chp=1.57079633&chs=300x155&chl=|&chco=43A443|D53030|3B74CA|FFDC00&chf=bg,s,00000000&chbh=70&chds=0,14&chm=N*0,FFFFFF,0,-1,20,,ve::15&chp=10][1]
[1]: http://i.stack.imgur.com/QiE2d.png
There is actually a 2 above the red bar that is aligned correctly, but since the background on SO is white, it's not showing up.
How can I make it appear ABOVE the green bar. I've torn the API a part and tried seemingly every combination with no avail.
The API reference is available here: http://code.google.com/apis/chart/interactive/docs/reference.html
The problem is with "chm".
I removed the color specifications, and now the link works perfectly.
http://chart.apis.google.com/chart?cht=bvs&chd=t:14.1,2.1&chp=1.57079633&chs=300x155&chl=|&chco=43A443|D53030|3B74CA|FFDC00&chf=bg,s,00000000&chbh=70&chds=0,14&chp=10&chm=N,,0,-1,20,,ve::15