How to create legends with triangular end boxes in arcGIS? - legend

I simply want my legend which is now in the form of the left bar in the following image, to be shown in the form of the bar in the right side. I couldn't find anything related for arcGIS. those anyone know?
Thank you so much for your help.

Unfortunately I don't think there is an elegant way to do this, only a work-around:
In Layout View, convert the legend to graphics. (Make sure your data and legend are in their final product state as your legend will no longer be dynamically linked to your data).
Right-click on the legend and ungroup the elements in the legend. Repeat as many times as necessary in order to be able to select an individual rectangle.
Manually convert the two rectangles into triangles. One way to do this would be to activate the "Draw" toolbar and draw white polygons over parts of each rectangle.
Once finished, regroup everything.
Again, not the prettiest solution but I don't believe ArcMap has this functionality.
Good luck!
Tom

Related

Adding Scale Breaks to an ssrs bar graph

a pic of my chart
as you can see in the posted picture it is graph basically illegible. so
is there a way to put breaks in an ssrs bar graph?
I believe what you are asking for is to have spaces between the individual graphs on your page.
You should be able to go to the properties pane (usually in the bottom right corner). There look for custom attributes and then find the point width. There are other setting here as well.
Make sure you have selected your graph before going to the settings.

impresspages -- Is there a simple way to align images center, left, or right?

I see it's easy to change the image size, make it link to something, or change the title and description, but what I don't see is an option to align the image right, left, or center. Am I missing something?
I'm using the Air theme, if that matters. I'm new to Impresspages.
Thanks!
Edit:
Just to make it absolutely clear what I'm asking:
I'm using Impresspages. I want to insert an image and make it align to the right, for example.
I have no trouble dragging and dropping the image widget to where I want it to go. I have no trouble uploading the image. If I wanted to, it is quite clear how to change the image size, how to add a link, and how to change the title and description of the image.
However -- I would have thought there would have been an option to align the image to the left, right, or center, but there is no such option. I have checked Stackoverflow very carefully, as well as the Impresspages site, and I don't see anywhere how to do what should be a really simple thing.
Am I missing something? Or do I need to just learn how to do without right aligning my images?
Thanks!
You can do that by dragging image widget next to other widget on any side. It that case it will align where you want. Here's an example - http://cdn.impresspages.org/core/file/2014/04/03/Impresspages_no_colum_01_1_2.gif
To make it centered is a bit tricky. There are no straightforward way of doing it.
If you really really need this, you can try using RichText widget. It allows to insert image into a text as it is in any text documents.
You can create additional skin for Image widget to be centered http://www.impresspages.org/docs/widgets#skin
Geeky way. But going to work.

How To Remove Background Wall & Gridlines On 3D Chart Control

I am trying to remove all gridlines and all parts of the background wall from a 3D Column graph. I have tried changing every background colour and every enabled setting to false but I still cannot seem to find where to remove the surrounding gridline as shown below. If possible, I would like to keep the graph floor, but remove the side and back walls.
I'm sure it's simple, so any help would be appreciated.
Thanks
Unfortunately the style of Area3DStyle is a bit hard-coded. You have the possibility to choose one of the following LightStyle:
None
Simplistic
Realistic
From you picture it seems that you have chosen None, try to set LightStyle to Simplistic to remove the border on the bars.
If you want to completely remove also the gray background you can set the ChartArea BackColor to Transparent.
The final result will be similar to

How may I create the area bar like the below Image in Photoshop?

How may I create the Area Bar like the below Image Bar on the Top and Bottom too for Area? I search a lot but didn't find it that how may I make it?
You can use rectangular marquee tool and fill the desired color.
Marquee tool have add and subtract option too by which you can make different shapes also according to your image.

Removing White Background Box from MATLAB Figure when using the Mapping Toolbox

I've started to use the Mapping Toolbox in MATLAB for a project of mine, and below is a screenshot of what I currently have created using it.
What I'm trying to do now is remove the white box from behind the actual map, but I can't seem to figure out how to do it. I've trying setting 'Frame' to 'off' with the axesm command when first creating the map, but that doesn't do it. I've looked through the documentation to try to figure out why there's even a white background (and when I use the worldmap command the box doesn't appear), but I cannot determine why.
EDIT: I am looking to remove the white background entirely, so as to have the main contour plot surrounded by the figure's background color, which in this case is the gray.
The background color of a figure is a property of that figure named 'color'.
If you set that property to the value 'none' then you will have no background.
So, the easiest way to do it is:
set(gca,'color','none')
Of course you can give a figure handle instead of the current axes (gca).
The more aggressive option is to set the entire axis off:
axis off
But this will remove the axis completely, including labels and such which might not be what you want.
Try axis off when it's in focus, axis(handle,'off') when not
I have a potential solution.
If you run
get(figure(1))
to find the figure attributes and run
set('some resize property',[some set of values])
or
setm('some resize property',[some set of values])
You may be able to 'fill in' the space this way, unless there is an easier property to change. Can you please give more details if this does not lead to a solution?
Hope this helps!