Mapviewer legend and note overlap

I am using Mapviewer 11ea and wish to place a legend above a note in the SOUTH EAST corner of my map. The note is defined in the config file and the legend is provided in the map request. The legend itself seems to create a box larger than required and overlaps the note text below. See the image at http://www.geocities.com/ozspatial/legend-note-overlap.jpg showing the overlap and the large amount of white space at the bottom of the legend.
The legend component of the request is from the default mapviewer request and looks like:
<legend bgstyle="fill:#ffffff;stroke:#ff0000" profile="MEDIUM" position="SOUTH_EAST">
          <column>
            <entry text="Map Legend" is_title="true" />
            <entry style="M.STAR" text="center point" />
            <entry style="M.CITY HALL 3" text="cities" />
            <entry style="M.CITY HALL 4" text="big cities" />
            <entry is_separator="true" />
            <entry style="C.ROSY BROWN STROKE" text="state boundary" />
            <entry style="L.PH" text="interstate highway" />
            <entry text="County population:" />
            <entry style="V.COUNTY_POP_DENSITY" tab="1" />
          </column>
  </legend>Does anyone know how to reduce the white space in the legend or some other way to avoid the overlap? (whilst still placing both note and legend in the SOUTH EAST corner)
thanks,
Ross.

Hi Ross,
I don't think you will be able to reduce the white space at the bottom, but there are some parameters on the legend that you can use.
1) In overlap situations you can set the transparency of the legend:
<legend bgstyle="fill:#ffffff;fill-opacity:128;stroke:#ff0000" profile="MEDIUM" position="SOUTH_EAST">
2) For the profile value there is an internal size defined. In your figure I can note that the advanced style items are also overlapping, which means that the internal size MEDIUM seems not appropriate for this legend. You can assign a height for a legend entry:
<entry style="V.CA INCOME 2" tab="1" height="150"/>
3) With version 11 there are two new parameters (location_x and location_y) for the legend that can be used to put the legend in any position. In this case the position attribute is ignored if defined.
<legend bgstyle="fill:#ffffff;fill-opacity:128;stroke:#ff0000" profile="MEDIUM" location_x="20" location_y="50">
Joao

Similar Messages

  • Beginners CSS layout question - expanding a layer and not overlapping another

    Having got well and truly fed up of using tables to layout
    pages I am trying to gem up on CSS layer based layout. All well and
    good but despite the various tutorials I can't find an answer to
    this question...
    Q. I have a layout with layers to make a three column layout,
    however, I want to have a footer section at the bottom of the page
    that runs the same width as the three columns (you can see my WIP
    example here
    http://www.spiralfilm.com/clients/broadoak/index_css.html
    ). Problem is, as the centre section expands with more content, how
    do I make that section expand and not overrun the current footer
    section? I want it to expand like a table does and push the footer
    down.
    I'm sure it is simple but I just can't get my head around it!
    Thanks in advance for any pointers...

    > However, is the use of div tags the way to seperate
    blocks of content? The
    > DW8
    > help file seems a little unclear on this?
    Yes, it would be one way to do that. A div tag is simply a
    container for
    other HTML elements, like a table. The problem you are having
    comes with
    using DW 'layers' to contain text. As Thierry suggested, this
    is because
    absolutely positioned elements (i.e., DW 'layers') are
    removed from the
    normal flow, preventing them from interacting with adjacent
    page elements -
    this means that when the text inside them expands, it will
    begin to overlap
    other content. See my demonstration of this here -
    http://www.great-web-sights.com/g_layers-overlap.asp
    Try these tutorials -
    http://www.macromedia.com/devnet/mx/dreamweaver/css.html
    http://www.macromedia.com/devnet/dreamweaver/articles/tableless_layout_dw8.html
    http://www.macromedia.com/devnet/dreamweaver/articles/css_concepts.html
    Murray --- ICQ 71997575
    Adobe Community Expert
    (If you *MUST* email me, don't LAUGH when you do so!)
    ==================
    http://www.dreamweavermx-templates.com
    - Template Triage!
    http://www.projectseven.com/go
    - DW FAQs, Tutorials & Resources
    http://www.dwfaq.com - DW FAQs,
    Tutorials & Resources
    http://www.macromedia.com/support/search/
    - Macromedia (MM) Technotes
    ==================
    "Benfrain" <[email protected]> wrote in
    message
    news:elgpba$qds$[email protected]..
    > Hi, thanks for those links. Sorry to confess they are
    all a little beyond
    > my
    > knowledge. I will read on and see if I can understand
    them.
    >
    > However, is the use of div tags the way to seperate
    blocks of content? The
    > DW8
    > help file seems a little unclear on this?
    >

  • Force legato and note overlap correction doesn't work

    in some songs the overlaop correction and the force legato do not work anymore. I have renewed the keycommands for these functions, it doesn't help

    Please check this:
    Go to Pianoroll / View / uncheck One Track, check Selected Regions.
    Now the keycommands Force Legato, Overlap will work.
    (Unfortunately now you only can see one region at the same time, to see all regions you have to check One Track again, or select the track in the main window).

  • Triggering audio to stop and not overlap on assessment slides / Layers in Captivate

    I am struggling with audio overlapping on assessment questions if learner clicks early and answers the question. The slide audio continues and the answer audio plays also.
    Is there a way to stop slide audio when user clicks another button with audio?
    Also, is there a way to set up layers in Captivate like you can in Storyline?
    Any help would be much appreciated and time saving.

    If you want layers like in SL, you'll have to stay with SL. If you want libraries, you have to stay with Captivate. Just kidding.
    Control over slide audio is very limited, you cannot stop it when another audio clip starts playing. That is only possible with object audio and with audio clips that are played with the commands Play Audio.
    Audio Objects: Control them! - Captivate blog

  • Stacked Bar chart does not overlap series

    I have a stacked bar chart with to values "Invoiced" and "Budget" and 2 categories YEAR and MONTH - the problem is that the bar chart shows the values Invoiced and Budget in Top of each other and Not overlapping each other . ex:
    NOW:  Invoiced =  200   Budget = 300   - Bar chart shows a column of 500 for the month (NOT correct)
    What I want is to show 1 column for each month where up to 200 the colour is green and from 200 to 300 the colour is blue for example....
    How to achieve this ?

    Hi HCMJ,
    By default, the bar value will not overlapping each other in stacked bar chart, and we cannot increase or decrease the gap between the series in Reporting Services.
    Based on my research, I find a workaround can achieve your requirement, please refer to the steps below:
    Create a dataset with the query below (sample data):
    CREATE TABLE #temp(name nvarchar(50),time nvarchar(50),value int)
    INSERT INTO #temp VALUES     ('Invoiced','YEAR',100),('Invoiced','MONTH',200),('Budget','MONTH',300),('Budget','YEAR',600)
    SELECT * FROM  #temp
    Insert time field to Category Groups pane, and change the group name to “time”.
    Insert value field to Values pane, then change the value to like below:
    =min(Fields!value.Value,"time")
    Insert another field with the following expression to Values pane:
    =max(Fields!value.Value,"time")
    Change the type of chart from Stacked Bar Chart to Range Bar Chart.
    Right-click the Series field to change the Fill color to #9bff8c00 (DarkOrange with 155 Transparency) or any color with Transparency you like. Now we can get the following:
    Preview it and get the following result:
    If there are any other questions, please feel free to ask.
    Thanks,
    Katherine Xiong
    Katherine Xiong
    TechNet Community Support

  • Is there any way to sort the alarms differently in the Clock app? I have alarms for multiple days during the week, all of which overlap each other. It makes no sense to me that the alarms sort by time and not day. Thanks!

    Is there any way to sort the alarms differently in the Clock app? I have alarms for multiple days during the week, all of which overlap each other. It makes no sense to me that the alarms sort by time and not day.

    No, there is no way to change the sort order.
    Submit your feedback requesting this feature directly to Apple using the appropriate link on the Feedback page:
    http://www.apple.com/feedback

  • Legend and bars colors on charts not consistent.

    Using Crystal XI, I have a report that selects a top 10 categories in the report.  For each of the 10 categories, I have 4 stacked bar charts showing "dispatched" and "not dispatched".  I also have 1 subreport that charts two trend lines(one for "dispatched" and one for "not dispatched").
    The problem is the color of bars/lines are not holding the same colors for "dispatched" and "not dispatched" from chart to chart.  I verified each chart is sorted in the same manner, but that doesn't seem to matter. 
    I need "dispatched" to be the same color bar/line on all charts for each category and the same for "not dispatched". 
    Does anyone have any idea as to why this might be happening or how I may be able to prevent this?
    I have tried to changing each chart manually, but if the category changes at the next run, the colors are randomly selected again.

    I can try... First, be sure you are in design mode, not preview.  Right click the chart and select chart expert.
    The fifth tab over should be "Color Highlight" click on new,   in the item editor section ( to the right ) you should
    be able to select a item from your database, as well as a condition...   ie   customer region is equal to auckland
    You can select a color below this section.  Since you are changing this in the design mode, it should apply to
    the chart every time it appears in the report.
    Not the best solution, but it should work for your situation.

  • Voyager Legend will not work with my laptop

    I have an HP Pavilion dv6-3120us Entertainment Notebook PC with Windows 7(64-bit). I recently purchased a new bluetooth headset and am unable to get it to work with my laptop. The Previous headset was a Plantronics Voyager Pro which worked great with my laptop, all I had to do was pair it and that was that. My new headset is the Plantronics Voyager Legend and after pairing, it starts installing drivers and all but one are fine. 
            Bluetooth AV                                               Ready to use
            Bluetooth Remote Control                       Ready to use
            Bluetooth AV Remote Control Target   Ready to use
            Bluetooth Peripheral Device                   No Driver Found
            Bluetooth Hands-free                               Ready to use
    I've uninstalled, reinstalled several times and it didn't help, It shows that the device is paired, but doesn't reroute audio to the headset or the microphone. It shows in audio devices but says disconnected, when I click on 'connect', nothing happens and 'set as default' is grayed out and I cannot select it. I know that there is a separate bluetooth USB adapter available, but I'm using the headset mostly for my phone (which works fine) and occasionally my laptop so I don't really want to purchase it. I've already contacted Plantronics about the issue and this was their response:
    "Thank you for contacting Plantronics Technical Support.
    If you are using built in blue tooth and not our blue tooth USB adapter unfortunately we cannot assist you with your built in blue tooth, Plantronics does not supply drivers, here is our statement with regards to using built in blue tooth:
    If you are pairing the headset directly to your computer, the drivers that are required are for your computer's internal Bluetooth adapter. You will need the drivers supplied by your computer's manufacturer in order for you to use your Bluetooth headset as an audio device.
    Different computer manufacturers and computer models will use different internal Bluetooth adapters, so you'll have to contact your computer manufacturer to get those drivers. Most major computer manufacturers have a "Drivers" or "Drivers and Downloads" page on their web site in which you can enter your computer model in order to retrieve available drivers. You can typically find the Bluetooth drivers under the "Network" category. "
    I've checked for bluetooth driver updates and it says that none are available, I've also uninstalled and reinstalled the bluetooth drivers from the laptop. Sorry that this is a short novel, but I wanted to make sure to give all available details, any help or advice would be welcome. Thank you in advance.

    Hi Nt_winters,
    Thank you for all the information, it is very useful. I understand you are having an issue with HP Pavilion dv6-3120us Notebook with Windows 7 and your new Plantronics Voyager Legend. In the device manager are all unknown devices removed as well as the Bluetooth devices for the headset? Broadcom is recommended for Plantronics Voyager Legend headsets. Here is a link to that driver.
    Hope this helps.
    Thanks.
    Please click “Accept as Solution ” if you feel my post solved your issue, it will help others find the solution.
    Click the “Kudos, Thumbs Up" on the bottom to say “Thanks” for helping!

  • SSRS 2008 Chart legend colours not matching series colour.

    Hi,
    I believe this issue has been raised before. In SSRS 2005 & 2008 R2 though I am yet to find a solution other than a lengthy (messy) workaround.
    I have a chart based on the following data:
    Data field - Count(ChangeID)
    Category - Change_Categorisation (ie. Maintenance, new hardware etc)
    Series - Change_Timing (Emergency, expedited, normal etc)
    So i am using a stacked column chart to show the category along the X axis and stack the number of changes by their timing.
    In the Series colour setting i am using the expression:
    =iif(Fields!Change_Timing.Value="Emergency","Red",iif(Fields!Change_Timing.Value="Expedited","Orange","SteelBlue"))
    I have also tried
    =Switch(Fields!Change_Timing.Value="Emergency","Red",Fields!Change_Timing.Value="Expedited","Orange",Fields!Change_Timing.Value="Normal","SteelBlue")
    In all cases the legend only seems to refer to the first column in the chart to pick up colours.
    For example.
    The first column for December is Maintenance changes. There are 2 emergency & 1 normal. the only expedited change is in another column (new hardware).
    So the legend shows Emergency as RED, Normal as SteelBlue and Expedited as Steelblue.
    no matter what I do the legend only picks up the colours from the first category. so if the fist category only has 1 timing (eg- Normal). Every item in the legend has the Normal colour (Steelblue)
    Surely there is a fix for this that doesnt involve creating a table to the side of the graph which seems like a really basic way to deal with this issue. I may as well go back to the dark ages and use Excel for my reports or bloody draw them on paper.
    :) calming down now. Thanks for any input on this.

    Hi,
    I have reproduced the issue you posted as the following picture shows. The color of series group “AAA” in the legend is not as the same as the color as the third column.
    Based on my testing, it occurs when the chart meets the following conditions:
    1.   
    Use decision function to specify the Series colors.
    2.   
    The data value of the chart using the aggregate
    Count.
    3.   
    One series group is not contained in the first category column.
    It is my pleasure to help you reflect the issue to the proper department, and you can also submit it at
    https://connect.microsoft.com/SQLServer/ to get an official confirmation.
    If the issue is urgent to your business, it is recommended that you contact Microsoft Customer Support Services (CSS) via telephone so that a dedicated Support Professional can
    assist you in a more efficient manner. Please be advised that contacting phone support will be a charged call. However, it will be free if this is a product issue.
    To obtain the phone numbers for specific technology request please take a look at the web site listed below.
    http://support.microsoft.com/default.aspx?scid=fh;EN-US;PHONENUMBERS
    If you are outside the US please see
    http://support.microsoft.com for regional support phone numbers.
    Regards,
    Tony Chain
    Tony Chain [MSFT]
    MSDN Community Support | Feedback to us
    Get or Request Code Sample from Microsoft
    Please remember to mark the replies as answers if they help and unmark them if they provide no help.

  • Line Chart cannot drill down on legends and lines

    I am doing a drill down Group report which will show the Sum of Last year's Sales By Country, State and city over a period of time(by date) for throughout the year 2007. Every group will have a line chart with Data title as Sum of Last year's Sales ($), Group Title as Date and legends displaying countries (or states or cities) as USA,UK,Australia. etc.. I have same sort of line chart for State and City as well. So, I got 3 levels of groups with a line-chart displayed in every group level.
    Now, the problem is my drill down would not work on chart lines or legends as it would do for a 2-dimensional data chart like a bar-chart or pie-chart. In the Chart Expert->Data->Layout:Group ->in the On Change Of event selection I am able to specify either Sales.Country (or) Sales.country and Sales.Sales.State. Both options would not let me get the correct linechart with correct data and drill-down working as well.
    The only work-around i got is to display the line chart with legends and showing the Country(or State or City) names in a field in the Group Footer. The drilling will work on those fields, but not on the legends or lines of the line chart. This make my report showing the Country names twice once on legend (with no drill-down) and once on group-footer(with drilling ability to groups below) which is untidy.
    Have anyone tried to make a drill-down crystal report on a 3-dimensional data like this? The World Sales report in Crystal reports C:\Program...\BO\Samples\General Business\World Sales Report is the best example of how i would like to see my charts to drill down. However, they drill down across a 2-dimensional data. I am publishing this Crystal Reports in Business Objects Infoview.

    Please re-post if this is still an issue

  • Data Transfer Process and Delete Overlapping Requests

    Hi All,
    We are on BW 7.0 (Netweaver 2004s).  We are using the new data transfer processing and transformation.  We want to use the ability to delete overlapping requests from a cube in a process chain.  So lets say we have a full load from an R/3 system with fiscal year 2007 in the selection using an infopackage.  It gets loaded to the PSA.  From there we execute the data transfer process and load it to the cube.  We then execute the delete overlapping requests functionality.  My question is, will the DTP know that the infopackage selection was 2007 so it will only delete requests with selections of 2007 and not 2006 from the cube?  Basically, is the DTP aware of the selections that were made in the infopackage?
    Thanks,
    Scott

    Hi Everyone,
    Figure it out...on a data transfer process you can filter the selection criteria - go to the extraction tab of a DTP and click on the filter icon.  Enter your seleciton conditions to pull from the PSA....these seleciton conditions will be used to delete the overlapping requests from the cube.
    Thanks

  • SSRS 2008: how to show an empty chart with legend and x and y axis when no data available

    Hi,
    I am using SSRS 2008, I generated one chart in report designer with the data from Analysis Services (Cube).
    According to the dataset, there is no data returned when I run the query. so when I preview the chart, there is nothing but "no data available" showing on the chart.
    Here I want to know is there any possible to show an empty chart with legend and x and y axis?
    If it is possible, can you tell me how can I make it?
    Best Regards.
    Connie Zhu

    Hi,
    When there is no data, the chart displays the message "no data available". But using a little work around, you can display an empty chart.
    Please find the below steps given to achieve this
    1. Create a new dataset using TSQL to return 1 row of data having the category field and value field set to 0. Add the fields that are necessary for the category fields, series fields and datafields.
       A simple example would be like
       SELECT 'abc' as Category, 0 as Amount
    2. Add a new chart, set the category field to 'Category' and set the data field to Amount from above dataset created in step 1.
    3. In the new chart, right click the category axis and select axis properties, Click on the labels tab, check on
    'Hide axis labels' and then click ok
    4. Now set the Visibility property of both the charts depending on the rows returned from your main dataset
       a. click on your main chart and set its Hidden property to :
    =iif(CountRows("MainDataSet"),false,true) 
       b. click on the new blank chart added and set its Hidden proprety to (the opposite) :
    =iif(CountRows("MainDataSet"),true,false) 
       Note : Please change the dataset name in above expression "MainDataset" to the name of your chart's dataset
    5. Resize the new chart to the same size as your main chart, then position the new chart on the place as the main chart.
       (Note : You can set the position of new chart to be same by copying the location property from the main chart) 
    6. Now run and observe the result. When there are no rows returned by your main dataset, the new chart (the blank chart) should be displayed.
    I've added a working sample of this kind of a report
    here.
    Hope this helps. Please feel free to discuss if you have any questions.
    Please click "Mark as Answer" if this resolves your problem or "Vote as Helpful" if you find it helpful.
    BH

  • Legend does not display with Line Chart

    I have a query that I wrote with Bex Query Designer v3.5.11 for a BW 3.5 system.  When I click Graphical Display tab in the query results, "Column Chart" shows a legend, showing which colors mean what.  However, when I switch to a different type of chart, such as Line Chart, Legend does not appear.  Anyone know how to make this appear?  without the legend, the chart isn't very useful.

    You can create a Web Template, Drag a Chart.
    1) Assign a query to the chart
    2) Right click over the Chart and select Edit Chart
    3) Select Chart Designer.
    4) Look for "Series" in the Overview Window
    5) Expand the Series.
    6) Activate the checkbox "Show Labels" on all the
       series that you want to have values.
    Regards
    Armando Flores

  • Chart Legend Edits not holding - CR XI R2

    We are making a report with multiple sub reports. Many of the sub reports are charts (Pie, stacked bar & line). The default legend labels are "Sum of [table or query name].[field name]." When we preview, then edit the legend labels to something more user friendly and save, the edits don't stick. As long as the report is open it looks OK, as soon as the report is closed and reopened it reverts back to the default legend label.
    What can be done to correct this behavior so the legend labels once edited will hold the value assigned?
    FYI
    The main report is simply a shell to hold the sub reports with conditionals for each section/sub report to allow for that sub report to be shown or not. There are no links between the sub reports or the sub reports and the main report. There are approximately 100 sub reports and about 1/3 of them are charts.

    Hi Steve,
    Preferably the solution would be to edit the Legend from the Design window.
    The other workaround is just delete the auto generated legend and manually creates legends.
    The charts used in Group Headers uses the summaries, which are evaluated while previewing the report and are referred to as u201CWhileprintingrecordsu201D stage and happens in Pass #2. Hence, the modifications that are done to the chart labels are not retained when you preview the report after closing the report. When you save the data with report, the modification are retained because they are not evaluated again and uses the existing data. You can observe this by closing the preview and then if you preview it again, you will not get the modified axis label as they are evaluated freshly.
    In case of charts which are placed in Report Header, these are evaluated in Pass #1.
    For more information on this, refer the document cr9_evaluationtimes.pdf
    OR search for multi-pass reporting in Crystal Reports Online Help.
    To create manual legends, follow the below steps:
    Step 1: Open the report.
    Step 2: Select u2018Boxu2019 from Insert menu and draw a small box near Chart
    Step 3: Select u2018Text Objectu2019 from Insert menu and insert it near the small box inserted in step 2 and enter the required label text in it.
    Step3: Right click on the box and select u2018Format Boxu2019 option, check u2018Fillu2019 checkbox and select the required color.
    Step 4: Repeat step 2,3 to have mores manual legend labels.
    Step 5: Preview the report.
    Hope the above helps.
    Regards,
    Alpana

  • Sort Order for Legend and X Axis

    Does anyone know of a way to keep a specific sort order for both the X Axis and the Legend. Both start with numbers and I can get one or the other to sort correcly on the chart but not both. Biggest problem is not all of the legend items are in the first X Axis item so the colors change on the bar graph depending on the legend items in the first X Axis item.

    If you tie bar colors with values, how you will differentiate the bars for different legends.
    Take an example, there are three columns Employee, Location and salery have following values
    Employee Location Salery
    A London 30000
    B Chicago 40000
    C London 50000
    D Chicago 60000
    if we keep Location as Legend and Employee in X Axis, and sort Legend first then Employee. Set Blue for Chicago and Red for London, First two blue bars for A and C will be displayed and then two red bars for B and D will be displayed. Order in X axis will be A,C,B and D. This is not in sequence but this is the way it will and it should work. If you sort by Employee instead if Location, you will get sequence in X axis, but the same colored bars wont be together.
    Thanks
    Swami

Maybe you are looking for

  • Sound but no video on tv monitor when capturing/viewing timeline

    Can someone please suggest a solution to my problem? It seems that my settings have all of a sudden changed and I can no longer view the video on my tv monitor when capturing or when playing the clips in my timeline. I've already checked to see that

  • Personalization of variables in WEB

    Hi I activated personalization of bex in the spro. It works fine in the query analyzer. But this doenst work in my portal queries. I have gone thru this link but couldnt find out the exact place to create it. http://help.sap.com/saphelp_nw04/helpdata

  • BEx in IFRAME 2004s

    Hi Has anyone tried to load a BEx webtemplate or query in an html <iframe>. i tried taking the url of query that works in the browser. the putting it in a simple html page like this. test.htm <iframe src="http://sd2n1v3.sap.kmd.dk:52200/irj/servlet/p

  • 700p (Verizon) and Vista x64

    I just bought me a new laptop that has Vista x64 on it.  I've tried to sync via Bluetooth (which is the only option for Vista x64) and I get the following error message: "Unable to initiate HotSync operation because the port is in use by another appl

  • StartDrag element with rotationY or rotationX bug

    Hello  there, I´ve  looked a  lot in the web but it seems that no one got this problem...  or at least  not published it. I´m making a startDrag with bounds  on a element  with rotationY value. Ok, it drags, but when got in the  bounds it just  give