We have 5 ports in the diagram element .When we add the ports to the element through addin we found that all the ports are placed one above another.So we tried to arrange them through the co-ordinates that are provided for the diagram objects.But still we are not able to arrange them properly.So is there any way we can arrange the ports in the element such that it should be placed properly in the elements border without overlapping.
You might need to upgrade EA. This functionality has been buggy with former EA versions. (AFAIR 10 and 11 suffered from this)
Related
I'm having a little problem with graph scale in visio. My goal for now is to make a graph scale (belongs to charting shapes) with 22 divisions in it. But I don't know how to add an option of 22 divisions on the scale (2, 4 and 5 division options are available).
I have tried to add 22 division option in "Define Shape Data" window, but unlucky.
I have searched whole internet for the solution, but I found no solution.
I hope someone here will know the solution.
Just adding 22 to the options will not magically make 22 divisions appear. You will also need to have the shapes (or geometry sections) behind it (22 of them, not just 2, 4 or 5) to be made visible when 22 is selected.
You need to understand how the whole shape is constructed, by looking at the various group sub-shapes (and/or geometry sections) to see how each is made visible/invisible when the 2/4/5 selection is made.
Is there a way to configure the margin or position of an element's title in Enterprise Architect?
For example, can I move the word "Foobar" closer to the top of this packaging component to save some space?
I also noticed that some elements seem to have a minimum size even when they are empty. For example, here Component1 cannot be smaller than whats shown in the picture, while the packaging component can made much smaller.
No, you cannot configure that for the standard EA elements.
The only way to influence something like that would be to write your own shapescript, link that to a stereotype and apply the stereotype to the element.
But that would probably be a bit too much if you only want to change the position of the name field.
I have some common legend to be followed across project for all diagrams.
I see no way to copy the Legend from one EA diagram to another.
is there a way out for this ?
I had no issue using Ctrl-C while the legend is selected and using Ctrl-V in the target diagram.
So we can create a word cloud in tableau but when we create it all the words are always horizontal, like ->
I want to show them in a mixed manner, horizontal and vertical together, kind of like->
I have tried to make changes and referred this url from tableau community.
https://community.tableau.com/thread/136977
Here they say the best option is to make two separate sheets one with all horizontal words and one with all vertical words and then arrange them next to each other, that is on one sheet you can either have all vertical words or all horizontal words, that's not the best solution. I want them to be on one sheet with a mixed pattern of vertical and horizontal words.
Is this possible in tableau?
The easy answer is: No!
At least not in a way that you have in mind. As you mentioned, you can change the orientation of the whole cloud or you create 2 clouds on a dual axis, but it will not create dense cloud like in your example. It will rather have gaps and words overlapping each other.
Even if you go with what they mention in one of the comments, to define manual coordinates, you will essentially create the cloud by yourself and lay everything out manually. In case the size of a word changes, you would probably have to change most of the coordinates again.
If you want a word cloud in your dashboard, you could create it externally and embed it in your dashboard. Obviously you wouldn't have the Tableau features, like filtering and highlighting, but that would be the closest you can get to a nice looking cloud in Tableau.
The red circles with numbers are clusters, but part of a bigger cluster when zoomed out.
Is it possible to change the marker/icon of the marker cluster in this present zoom depending on the markers that they have inside them? This without clicking them or anything, just change depending on the values of the markers that are hidden?
I have tried accessing the layer that is clustering all of them but I haven't been able to find the markers themselves, much less know how it would be possible to change the appearance of one without changing the other.
It looks like you already know how to customize your clusters appearance.
In the case your question refers only to the number of contained markers, you would just need to use a slightly modified version of the default iconCreateFunction to adjust the threshold values. When markers are removed/added from the MarkerClusterGroups and a cluster is de-/populated in consequence, its icon is re-drawn automatically. Customising the Clustered Markers
Now if you want this appearance to depend on some data from the contained markers, you would simply need to use cluster.getAllChildMarkers(); within your iconCreateFunction to get the array of markers contained within the cluster being styled. Then iterate through that array of markers, look for your data and create an icon accordingly.
Then, I understand that some data attached to your markers is changing, without any user action, and you want your clusters to update their appearance in consequence? In that case, please refer to this related question to upgrade your markercluster plugin with the new refreshClusters() method.
If your iconCreateFunction is properly designed, you do not have to worry about which clusters are changed. In fact, ALL clusters can be re-drawned, but if their markers data has not changed, they will get the same icon.