*Is there any way to limit the Chart Bar size dynamically?*

Hi
I have selected the Marker size as Medium for my Bar chart.
Bar chart bar showing too big when there is only one bar.
Is there any way to limit the bar size dynamically?
Thank you

hi Ruwan,
Don is correct in that there is no option in the chart design component to do this.
what you can do though (i know it is a pain) is to
1) create a new chart in a new section with a narrower bar using the chart options dialogue
2) create a conditional suppression formula for the new section and the old chart section based on the value returned in the Show Value for the chart
i have created a request for a charting overhaul [here |https://ideas.sap.com/community/products_and_solutions/crystalreports;jsessionid=B3E2E9F6A6CC9C9F5321659382A91855.node0]in the ideas place which includes a solution for this particular issue. please feel free to give it the thumbs up if you think that this is a worthwhile idea.
jamie

Similar Messages

  • Is there any way to limit the number of Threads running in Application(JVM)

    Hello all,
    is there any way to limit the number of Threads running in Application(JVM)?
    how to ensure that only 100 Threads are running in an Application?
    Thanks
    Mohamed Javeed

    You should definitely use a thread pool for this. You can specify maximum number of threads that can be run. Be note that the thread pool will only limit the number of threads that are submitted to it. So donot call "Thread"s start() method to start thread on your own. Submit it to the pool. To know more, study about executor service and thread pool creation. Actually it will not be more than 20 line code for a class and you might need maximum of 2 such classes, one for threadPool and other one for rejection handler (if you want).
    Just choose the queue used carefully, you just have to pass it as a parameter to the pool.
    You should use "Bounded" queue for limiting threads, but also be careful in using queues like SynchronizedQueue as the queue will execute immediately the threads submitted to it if maximum number of threads have not been running. Otherwise it will reject it and you should use rejection handler. So if your pool has a synchronized queue of size 100, if you submit 101th thread, it will be rejected and is not executed.
    If you want some kind of waiting mechanism, use something like LinkedBlockingQueue. What this will do is even if you want 100 threads, you can specify the queue's size to be 1000, so that you can submit 1000 threads, only 100 will run at a time and the remaining will wait in the queue. They will be executed when each thread already executing will complete. Rejection occurs only when the queue oveflows.

  • Is there any way to make the scroll bars wider and blue in Lion?

    Is there any way to make the scroll bars wider and blue in Lion?

    Nope, afraid not. The only third-party utility that you might look at is LionScrollBars 0.5.4. You can search for others at MacUpdate or CNET Downloads.

  • Is there any way to limit the memory firefox can use?

    once firefox reaches about 150Mb of memory it starts locking up and even if I manage to close it through taskmanager it still does not release the memory it was using.Is there any way to set a limit on how much memory firefox can use and a way of making sure it releases it again when shut.I run a dual core 1.8Gb cpu 2 Gb of ram and Win xp Pro service pack 3

    See:
    * http://kb.mozillazine.org/browser.sessionstore.max_windows_undo
    * http://kb.mozillazine.org/browser.sessionstore.max_tabs_undo

  • When changing "browser.newtab.url" is there any way to prevent the address bar from getting focus?

    When I change "browser.newtab.url" to about:home and open a new tab, focus is set to the address bar not the search box on the firefox home page. The same thing happens if i change the url to google.com or another search engine. Is there any way to prevent this from happening.

    Custom new Tab has a small bug if the start page is exactly the same as the new tab page. Then the focus of the start page is on the address bar. Just leave the "www." out in the startpage and use "www." in the new tab page then it works perfectly. e.g.
    Startpage: google.com
    new Tab page : www.google.com
    Now the focus of the start page is on the search box.

  • Is there any way to modify the photo book size after I have created the book?

    I created a photo book then realized it was not the correct size. Is there a way to correct the size or do I have to start from scratch?
    I Found the answer after I posted this- CTRL D to duplicate, then choose new theme - Worked like a charm.

    Yes.  First click on the book in the Projects section and type Command +D (duplicate).  Open the book, click on Change Themes and in the next window select the size and type you want.
    The duplicate is to have in case you find any text that was removed in the resizing.  You can cut and past from the duplicate copy to the original.  Also verify that the resized book has all of its text, not text warning indicators and that all photos are there and in the correct order.
    Always create a PDF version of the book according to this Apple doucment, iPhoto, Aperture: Previewing an order in iPhoto or Aperture, to check for any errors, i.e. typos, missing text, etc., before ordering the book.  Keep the pdf file to compare with the printed version when it arrives.
    Opps!  Answered your question from the title without reading the full body of your post. However, the last 2 paragraphs are worth reviewing.
    OT
    Message was edited by: Old Toad

  • Is there any way to hide the menu bar?

    I've been trying to find out if there's a way to hide the menu bar unless the mouse pointer is pushed up to the upper edge of the screen, I know there are third-party applications that let you do this (Menufela which uses Application Enhancer that I prefer to avoid as it is causes more problems than it solves as far as I'm concerned), I also know that it's possible to write applications that cause the menu bar to exhibit this behaviour while they're focused.
    But what I'm looking for is a way to make it behave this way all the time without installing Application Enhancer and having to deal with all the headaches that come with it.

    serioustrouble wrote:
    It does seem odd that you can't get the menu bar to hide itself though, I seem to recall something about editing certain files in .app directories to make it hide itself on an app-by-app basis.
    To hide the menu bar for a single application, you need to modify the Info.plist, as described -> here <-.
    This will work on nearly every application. Only on a very few applications it will cause incorrect behaviour, mainly Finder.app.
    So a simple way to realise your wishes, is to create an Applescript, that will "hide and unhide" the menubar for a couple of apps at one time.
    Here a demonstration example: Choose one or more apps. Menu bar will be hidden/unhidden:
    <pre style="
    font-family: 'Courier New', Courier;
    font-size: 12px;
    line-height: 1;
    border: 2px solid #1E90FF;
    width: 700px; height: 200px;
    color: #000000;
    background-color: #F5FFFA;
    overflow: auto;">
    on run
    set xyz to choose file default location (path to "apps" as alias) with multiple selections allowed without invisibles
    repeat with i in xyz
    set appName to name of (get info for i)
    if appName ends with ".app" then set proName to text 1 thru -5 of appName
    tell application "Finder"
    try
    if exists (process proName) then
    set x to display dialog "Is " & "\"" & proName & "\"" & " still running? If so, please quit it now!" buttons {"Cancel", "Quit it!", "No! Not running!"} default button 2 with icon 0
    end if
    end try
    end tell
    try
    if button returned of x is "Quit it!" then
    tell application appName
    quit
    end tell
    end if
    end try
    try
    ((i as Unicode text) & "Contents:Info.plist") as alias
    set infoPlist to quoted form of POSIX path of ((i as Unicode text) & "Contents:Info")
    try
    do shell script "defaults read " & infoPlist & " LSUIPresentationMode"
    do shell script "defaults delete " & infoPlist & " LSUIPresentationMode"
    on error
    do shell script "defaults write " & infoPlist & " LSUIPresentationMode -int 4"
    end try
    end try
    end repeat
    end run
    </pre>
    Spażek

  • Is there any way to limit the number of RFC calls from xMII to SAP R/3

    Hi All!
    I wanted to know whether the number of simultaneous RFC connections made from xMII to SAP R/3 system can be controlled in any way. Suppose we have a scenario wherein some million Sales Orders or Production Orders are to be updated in SAP R/3 from xMII in a short span of time. For all these updations to take place, multiple RFC calls will be established from xMII to SAP at the same time. This will increase the load on the SAP R/3 system and affect performance of the SAP R/3 system. Is there any check on xMII side to limit the number of RFC calls that can be made to SAP R/3 system?
    Regards
    Anupam

    Anupam,
    If you are using 11.5 just keep in mind that the JCO connection points to a single application server (based upon the SAP Server alias connection settings), but the traffic itself to make a BAPI request is effectively the same as any client user traffic.  There will obviously be limitations on performance and throughput, with network and server constraints added to the number and size of the R/3 requests, but there is no magic formula to plug-in because of all of these variables.
    If you are using 12.0 (or plan to migrate when it goes GA) then taking advantage of the JRA (java resource adapter) and the associated application server pooling that it offers on the NetWeaver side of things will greatly help you in the throughput capacity.
    If you have put some of your xMII application into either test or productive use and are running into issues then I would highly recommend entering the specifics into the customer / partner support portal so that they can help you through any associated problems.
    Regards,
    Jeremy Good

  • Is there any way to limit the number of times that a PDF can be opened?

    I run a small publishing company and we want to provide exam copies of our books to professors.  At present our exam copies have the words EXAM COPY as a water mark on every page and we've also made the files so that they can't be printed or easily copied.  However, we'd like to also restrict these PDFs so that they can only be opened 5 times.  I've read about FileOpen but that approach seems a bit more complex than needed.  Is there any other way to restrict the number of times that a PDF file can be opened once it is downloaded?  Thanks in advance for any suggestions.

    DRM soltions like FileOpen are your best bet for PDFs. Others include Adobe's LiveCycle Rights Managment, LockLizard, Armjisoft PDF Security OwnerGuard, etc.
    They all work and are priced differently, but there's really nothing for what you want to do that is both simpler and secure.

  • Safari-Is there any way to stop the tab bar from disappearing when you scroll down?

    It's really annoying.  I know tapping it makes it come back, but still.

    You will find that this is application dependent.  Most Apple applications such as Safari and Mail will use the "sheet" type of dialog boxes that you are referring.  There is no way for the user to change that behavior.  Other, non-Apple, applications like Firefox use a "modal" dialog box for printing etc.  The modal boxes can be moved around so you can see the page behind.

  • Is there any way to config the maximum queue size?

    Hi all:
    I wander to know how can I configure my iMQ3.5 to limite the maximum message number in a queue instance?
    And if the producer is too fast, how can I limite the input rate of producer?
    Thanks for your help!
    BR.

    For destinations in IMQ 3.5, you can configure the parameters maxTotalMsgBytes and maxNumMsgs (from version 3.5, these parameters apply to queues AND topics).
    The Enterprise edition gives you the following options to configure the behaviour when the producer is faster than the consumer: slowing producers (FLOW_CONTROL), throwing out oldest messages (REMOVE_OLDEST), throwing out lowest priority messages according to age of the messages (REMOVE_LOW_PRIORITY), and/or throwing out the newest message (REJECT_NEWEST).
    Thomas
    www.arjuna.com

  • Is there any way to link the individual rows of data to the corresponding bars in a bar chart so that each legend title appears simultaneously with its corresponding bar when creating a build? I can do it in a pie chart but can't in a bar chart.

    Is there any way to link the individual rows of data to the corresponding bars in a bar chart so that each legend title appears simultaneously with its corresponding bar when creating a build? I can do it in a pie chart but can't in a bar chart.

    You used the data.  Verizon can not see what it was sued for.  However your phone can see whats apps used the data.  go to settings-data usage- there will be a place that says data usage cycle.  line the dates up with your cycle.  then there will be a bar graph below that   extend bother white bars one all the way to the left and one all the way to the right.  after those are extended below that will be a list of apps,  there should be one that used over 2 gb and that will show you what app used that data in her purse

  • Is there any way to generate Gantt chart by using oracle 9iDS?

    Is there any way to generate Gantt chart by using oracle 9i reports builder
    Can you please send me the link or more information on oracle 9iDS.
    Thanks

    Hi,
    Oracle9iDS itself doesn't support creating Gantt charts. The option oyu have is to use Oracle Graphics 6i, because there is no Graphics in 9i, and configure it to run with Oracle9i Forms. There exist a whitepaper at otn.oracle.com/products/forms that explains how to make Graphics 6i work with Forms 9i.
    Frank

  • Is there any way to print  the data inside  the Notes field of MIR6 Report

    Hello Gurús.
    We need to include the data inside the Notes field in the report MIR6 - INVOICE OVERVIEW - report.
    Is there any way to print  the data inside (comments)  the Notes field as well in the Report  ?
    We found that the only way is to open the Notes and print it, but it takes time, any idea ?
    Rgds.
    MCM.

    There's nothing built-in that does that. If you only have text fields and they don't have any formatting or other property that would prevent it (e.g., Date, character limit), you can run a simple script to populate each field with the field name, and then print. A more complicated approach would be a script that adds text annotations near/over each field that shows the field name. This would just be for documentation purposes, but it's possible. Post again if you'd like help with the first. You'll probably have to pay someone for the second approach if you don't want to do it yourself.

  • Is there any way to limit purchases on my iPad

    Hello world
    MY question is simple: Is there any way to limit ALL purhases (not only in-app purchases) on my iPad.
    I've tried to assign a debit card with a small amount of money but it did not help. I'm still able to make purchases, their cost is in "pending" state(a red sum in iTunes with info that my card could not been authorized) and thay will be debited from the account as soon as i refill my account

    Remov the card details and credit your account with a small amount by means of an iTunes gift card.

Maybe you are looking for