It is possible to define the ranges of the quantities?

I have this chart, i put this ranges(300,350,400,450,500,550,600,650,700)
!http://img242.imageshack.us/img242/8468/rangosn.png!
I want to show ranges per 100(300,400,500,600,700)
i found in the documentary and i didn´t find nothing.
This is my code chart
chart:
<Graph depthAngle="50" depthRadius="8" pieDepth="30" pieTilt="20" seriesEffect="SE_AUTO_GRADIENT">
<LegendArea visible="true" />
<SeriesItems>
<Series id="0" markerType="MT_BAR" color="#eea16b"/>
<Series id="1" markerType="MT_BAR" color="#fae48f"/>
<Series id="2" markerType="MT_MARKER" color="#821616" lineStyle="LS_SOLID"/>
</SeriesItems>
<Y1ReferenceLine>
<ReferenceLine index="0" visible="true" lineWidth="3" text="Media de Aragón" value="500.0" displayedInLegend="true" lineColor="#ff11"/></Y1ReferenceLine>
<Y1Axis axisMinAutoScaled="false" axisMinValue="300" axisMaxAutoScaled="false" axisMaxValue="700"/>
<LocalGridData colCount="{count(xdoxslt:group(current-group(), 'Competencia'))}" rowCount="2">
</LocalGridData></Graph>
thanks

Hi Benito
I need to understand better what you want to see. So if you have
300,350,400,450,500,550,600,650,700
does that mean you actually want to see a chart with
0-300(1),
301-400(2)
401-500(2)
501-600(2)
601-700(2)
So really a count of the values in those ranges? Can you explain a bit further?
Thanks
tim

Similar Messages

  • Is it possible to define a range for JProgressBar ??

    I want to set a range on JProgressBar. Let's say I want to set red color for "30%" of progress bar to "70%" of progress bar.
    If i do:
    JProgressBar progressBar= new JProgressBar(JProgressBar.HORIZONTAL);
              progressBar.setBackground(Color.yellow);
              progressBar.setForeground(Color.red);
              progressBar.setMinimum(0);
              progressBar.setMaximum(100);
              progressBar.setValue(30);
    // it will paint till 30% of the bar.
    progressBar.setValue(70);
    // it will paint from beginning of bar to 70% of the bar.
    Is it possible to paint from value 30 to value 70. (is it possible to do it my defining our own class which extends from JProgressBar ??? I tried but was not successful)
    any help would be appreciated.
    regards,
    Kumar

    Hi,
    try this ;-)
    JProgressBar progress;
    public synchronized void addProgress (int newValue) {
       for (int i=progress.getValue(); i<=newValue; i++)  {
          progress.setValue(i);
          try  { Thread.sleep(20);  }
           catch (InterruptedException e)  { }
        progress.setString (newValue + " %");
    }

  • Is it possible to define the parameters of auto-sized text?

    Hello,
    I'm working on creating a form that will create small signs with variable text sizes. The font value is currently set to "0" but I'm concerned that my end user will add so much text that the sign becomes unreadable.
    Is there a way to create limits on font size within a text field? Can I put a range in the value field to achieve what I am looking for? Or is there a better way?
    Thank you,
    Erin

    My apologies for not coming back to you.
    After a 3 hour phone call and several weeks of emails, I received the following helpful information:
    "I took a look at your form and quickly noticed a few things. To start, the form you were working on was using PDF artwork since it was imported from an existing AcroForm, this limits the objects and functions you can use, and for that reason I have to recreate the form into a Static XFA form. Once that was done I tackled the font size 0 issue. By setting the font size to 0, you let Acrobat/Reader decide what actual font size should be used, but the only problem you face by enabling multiple lines is that Acrobat/Reader doesn't know when it should stop shrinking the font and start writing to a new line. This is a limitation of the feature, and not a whole lot can be done.
    What you can do on the other hand is to script your own logic. In the attached form I created a new formFunction container with a bit of logic. The function stored inside of this container gets called by all of the fields on the form when the document is opened, and every time the field is exited. This logic allows the fields to use font size 0 which auto sizes the font up to a certain point, but after 30 characters (when the font starts being to small), we set the font to a default 10pt and enable multi lines. Using this logic, you should be able to implement this on your forms."

  • Is it possible to define the frame size when capture from MiniDV?

    I am editing a series of tapes which I did not film and don't have the original camera. I am capturing it using my Canon ZR500. When I capture it the frame size is 720 by 480 (3:2). Is there any possibility that by using a different camera I could be inadvertently changing the frame size? (I can't see where I could but someone in this project thinks the aspect ration should be 4:3 - I can't see anywhere I could be changing it.)

    I have just given this a quick browse but I think it just explains how to make slides match the frame size. I used keynote to make the slide - probably not the best but I don't have photoshop. But the principle should be the same?
    But using an incorrect slide size shouldn't affect the aspect ratio of the final video should it?
    After I create the .mov file from FCE I use MPEG Streamclip to produce an .mp4 version to upload to the internet. If I use Streamclip to view the stream info it still shows a frame size of 720 by 480.
    Am I missing something?

  • Define a range for JProgressBar

    Is it possible to define a range for JProgressBar object ??
    I want to paint a progress bar from say 30% to 70% with a color say "green".
    If i do:
    JProgressBar progressBar = new JProgressBar(ProgressBar.HORIZONTAL);
    progressBar.setForeground(Color.green);
    progressBar.setValue(30);
    // it paints till 30% of the progress Bar
    progressBar.setValue(70);
    // it will paint from start to 70% of the progress bar.
    Is it possible to extend JProgressBar classs and define our own MyProgressBar Class which does this task ??? I tried but was not able to succeed.
    any help would be appreciated
    regards,
    Kumar

    I'm not sure what the request is. Are you asking for a process bar where the entire bar changes color within a certain range (not too hard). Or a progress bar whose bar could be multiple colors at the same time?

  • Possible to define color of screen BEHIND documents?

    I'm using Adobe Acrobat X Pro.
    Is it possible to define the background color of the documents when they open in Adobe Reader? I'm not talking about the document pages themselves, but rather that crappy grey and/or ugly blue screen that always displays behind the document pages.
    Can I define this for the user?
    Any suggestions?

    Can I define this for the user?
    No.

  • Define the class at runtime?

    Hi,
    is it possible to do something like the following:
        public function readGenericClassEntity(myClass:Class,ac:ArrayCollection):void{
            var entity:myClass=myClass(ac.getItemAt(dataGrid.selectedIndex));
    The part "entity:myClass" gives a compiler error:
         Type was not found or was not a compile-time constant: myClass.
    So is it possible to define the class at runtime?
    Thanks for any pointers!
    Martin Zach

    Hi Jason,
    thank you for your answer, one possible solution.
    I used the solution from:
    http://thillerson.wordpress.com/2007/03/01/runtime-class-instantiation-in-actionscript-30/ #comment-951
    Thank worked fine for me!
    Cheers!
    Martin Zach

  • Is it possible to define xhtml:tabscript width by using %

    Thanks in advanced to everybody
    I am new in BSP developing. I have a page with two frames where one shows a menu and the other one shows a tabstrip which contents a frame where dynamically a URL is called.
    As far as I have seen it is not possible to define the width and the height of a tabscript by % only by px. I have checked out the forum and I have seen that other people have had the same problems on defining width and height on tabscripts.( see xhtmlb:tabStrip height attribute posted by Durairaj Athavan Raja on Jan 27). They solved it by fixing by hard the height.
    My problem is that the client wants to see as least scroll as possible.
    A solution would be to find an optimal fixed width and height but it seems to be difficult because the application is going to be run in different computers with different settings. Hence the better one would be to define the width and the height on running time, for example, as it is mentioned in the message, by javascript.
    So if I have the screen size on a javascript variable, is there any way to use that variable as the width or the height of my tabscript?. Does anyone know how can I define the width and the height of the tabscript in such a way that it seems like I am using %.
    Any idea is welcome.
    -- Oscar --

    Correct me if i havent understood your question correctly.
    you have a tabstrip and within the tabstripitem you have an iframe and and fill the iframe src based on the tab clicked. Right?
    If yes.
    There are three factors to the whole scene here with regard to hieght.
    1. page height
    2. tabstrip  height
    3. iframe height
    I have faced the similar issue and solved as follows.
    1. I had set the  <htmlb:page scrolling  to "NO" so that i dont get two scroll bars at the right side (one for page and the other for iframe)
    2. i have placed the iframe outside tabstrip
    3. put the tabstrip and the iframe into normal html table like below.
    <table height=100% border="0" cellpadding="0" cellspacing="0" width="100%">
                  <tr>
                    <td width="100%">
          <xhtmlb:tabStrip id                       = "TS1"
                           renderSingleTabAsHeading = "FALSE"
                           flowIndicatorVisible     = "FALSE"
                           width                    = "100%"
                           onSelect                 = "mySelect"
                           selection                = "<%= selected_tab %>"
                           viewStateMode            = "COLLAPSED_EXPANDED"
                           dropDownListVisible      = "TRUE" >
        </td>
          </tr>
          <tr>
            <td height=100% width="100%">
    <iframe  id="I1" name="I1" scrolling="yes" width="100%"  height="100%" src="<%= iframesrc %>"
           border="0" frameborder="0" >
    </td>
          </tr>
          </table>
    Hope this is clear.
    Regards
    Raja
    /people/mark.finnern/blog/2004/08/10/spread-the-love

  • How can I define the possible entries for "invoicing process" at fkkinv_ma?

    At the transaction code fkkinv_ma, I fill in the fields "Date ID" and "Identification" but I have a problem with the field of "Invoicing Process". When I psh theF4 button, there comes no search help. What should I do? Should I define the possible entries first? If I should, how can I define the possible entries for "invoicing process"? How is the customization done?
    Thanks in advance for the answers.

    You have to define them in the IMG 
    Financial Accounting (new)
    Contract Account Recievable and Payable
    Business Transactions
    Invoicing
    Invoice Types
    You have to set up a number range, decide what type of Financial transactions should not be invoiced -- like  Dunning Charges
    then you have to have a developer create the form and form class of invoice.

  • Is it possible to define a seperate number range for purchase requisitions

    Hi Experts,
    Is it possible to define a seperate number range for purchase requisitions that come from Forecast vs normal MRP requisitions so that our purchasing department can identify the origin of the document?
    Thanks
    for the thoughts
    Sreeni

    You'd need to figure out manually how forecast PR's are different from MRP PR's (the field from PR tables ) and then in the user exit I mentioned the program looks at the table T161 and field NUMKI, and if the PR getting created is from forecast change that NUMKI in the program to a different one else keep it as it is. If you're know abap programming it won't take long to figure out the logic else work with your developer to implement it.

  • Is it possible to make master pages with several  title in one file? & Can I define page range from

    Is it possible to make master pages with several  title in one file? & Can I define page range from which page to which should be specific title?

    While the number of master pages is not unlimited, you can have quite a few in any file. I've never seen the limit documented, but it's in the hundreds, or more likely thousands. There is, I believe, a page limit of 9999 pages per document, but I don't know if that includes the masters or if they are counted separately.
    You can choose a page range in the Pages panel, then assign a master to them manually, and I beleive there are some scripts floating around that can assign a master page based on the appearance of a paragraph style (for chapter start pages, for example).

  • Is it possible to define a function in the MathScript Node

    Is it possible to define a function in the MathScript Node

    You can not define a function inside of a MathScript Node, but only because it isn't necessary. The way custom functions work in MathScript is that they are saved in .m files located in paths in the MathScript path list. When the MathScript compiler receives a function that it doesn't recognize, then it searches for it in the path list, and upon finding it, compiles and loads the function. You can specify these search paths manually by going to File>>MathScript Preferences from the MathScript Window or dynamically by using the path() command within a script.
    To answer your original question, if you would like to create custom functions dynamically within a VI, then you can simply build your custom functions using strings and then save them to an ASCII file with the extension .m. You could either save the file to a path already in the MathScript path list or you could dynamically specify the path by passing the path into a MathScript Node as a string and by using the path() command at the beginning of your script to set it.
    Kind Regards,
    E. Sulzer
    Applications Engineer
    National Instruments

  • Report writer/Report painter - How to define the range on the selection scr

    Hi,
    I want to use one field "Fiscal year for CG breakdown" in my customized report in which user can select the year in range ie FROM - to - TO range.
    Can anybode tell me how do we define the range in the selection screen?
    I have tried using the General data selection.. but its not working.
    Edited by: Seema Nakhale on Oct 7, 2008 11:13 AM

    Hi,
    Create a variable for the Fiscal Year field in tcode GS11. While creating the variable for the field, use the option "Value Entry Only".
    Thereafter refer the variable in the "General Data Selection" for the field with the options "Set" and "Variable" both ticked for the fiscal year. Also enter the variable name created above in the field in General Data Selection.
    This will allow you to enter the fiscal year as range while executing the report.
    Regards,
    Ramanand

  • Is it possible to define a Runtime System after the SC has been approved?

    Hello,
    I have created a Track for a certain SC called TestSC.
    When I did that, I defined only our development server as a Runtime System and imported the relevant SCs (SAP_BUILDT, SAP_JTECHS, SAP-JEE) only to this server.
    Now, the TestSC has been developed, assembled and approved.
    Is it possible, at this stage, to define the production server and import the TestSC to it?
    The reason I am asking this is because at SAP tutorials you need to define these Runtime Systems in advance and import the relevant SCs (SAP_BUILDT, SAP_JTECHS, SAP-JEE) to each one of them before the actual development starts. If I will define the production server now, will I still need to import these SCs to the production server or only the TestSC I have created?
    Thank you in advance,
    Roy

    Hi Roy,
    for the systems DEV and CONS, you always have to import them, as without you won't be able to do development.
    For TEST and PROD, there are at the moment no technical reasons for the import of these SCAs. But the CMS doesn't make a difference between SCAs that do not have to be deployed and the ones that have to be deployed (e.g. when you are working with external libraries that come in separate SCAs). The CMS transports all SCA that are checked-in and decides while the import what it has to do with the certain SCA (what can be three steps in DEV/CONS: import, build, deploy, while in TEST/PROD it's only deploy). This can also lead to the situation that no action is performed in a certain stage.
    Perhaps there will be a version check implemented in later SPs, so that you will receive a message when trying to import SCAs from another SP level than your runtime system. Then it is mandatory to check this also in TEST and PROD.
    Best regards,
    Timo

  • Is It Possible To define a size of the Procedure Parametere?

    In Oracle Is It Possible To define a size of the Procedure Parametere?
    If i have the procedure like
    Test_sp(no int,name varchar2)
    Is it possible to define a size
    Test_sp(no int(5),name varchar2(255))
    Thanks
    Rangan S

    As Anthony said - no, not in the parameter signature of a procedure or a function. Which could have unexpected run-time errors as one could wrongly assume that using a "derived" type will allow this.
    The following example illustrates:
    SQL> create table datatype(
    2 varchar2_5 varchar2(5),
    3 number1 number(1)
    4 );
    Table created.
    SQL>
    SQL>
    SQL> create or replace procedure fooProc( s datatype.varchar2_5%TYPE, n datatype.number1%TYPE ) is
    2 s1 datatype.varchar2_5%TYPE;
    3 n1 datatype.number1%TYPE;
    4 begin
    5 begin
    6 DBMS_OUTPUT.put_line( 'len='||length(s)||' value='||s );
    7 DBMS_OUTPUT.put_line( 'value='||to_char(n) );
    8 exception when OTHERS then
    9 DBMS_OUTPUT.put_line( 'parameter display failed with error '||SQLERRM(SQLCODE) );
    10 end;
    11
    12 begin
    13 s1 := s;
    14 DBMS_OUTPUT.put_line( 'string parameter assignment succeeded' );
    15 exception when OTHERS then
    16 DBMS_OUTPUT.put_line( 'string assignment failed with error '||SQLERRM(SQLCODE) );
    17 end;
    18
    19 begin
    20 n1 := n;
    21 DBMS_OUTPUT.put_line( 'number parameter assignment succeeded' );
    22 exception when OTHERS then
    23 DBMS_OUTPUT.put_line( 'number assighment failed with error '||SQLERRM(SQLCODE) );
    24 end;
    25 end;
    26 /
    Procedure created.
    SQL>
    SQL> exec fooProc( 'test1', 1 );
    len=5 value=test1
    value=1
    string parameter assignment succeeded
    number parameter assignment succeeded
    PL/SQL procedure successfully completed.
    SQL>
    SQL> exec fooProc( 'this should fail', 1 );
    len=16 value=this should fail
    value=1
    string assignment failed with error ORA-06502: PL/SQL: numeric or value error: character string buffer too small
    number parameter assignment succeeded
    PL/SQL procedure successfully completed.
    SQL>
    SQL> exec fooProc( 'test', 1234 );
    len=4 value=test
    value=1234
    string parameter assignment succeeded
    number parameter assignment succeeded
    PL/SQL procedure successfully completed.
    SQL>
    Note that only the string assignment fails. The string parameter works fine. And there is no impact at all on the number side, despite seemingly constraining it to a single digit.

Maybe you are looking for

  • Issues with a website created with Iweb

    I'm hoping someone out there can help... The site appears okay when viewed on a computer screen but... The main problem that I'm having at the moment is with printing site content. When opened in Firefox, only the first page of content will show up i

  • Problems with auto widths - Safari, IE

    http://www.spoc-ortho.com/test_jn.html What am I doing wrong? 1. In Safari, all of the submenus except for "Employment" have a one-line gap between the main menu bar and submenus. 2. I followed the directions at http://livedocs.adobe.com/en_US/Spry/1

  • Int to char

    Hello, How can I convert an int variable representing a character to a char variable? Thanks.

  • Table type as a parameter

    Hi Experts, I got a function with following importing parameter: REFERENCE(IM_RECIPIENTS) TYPE  ISU_ADR6_TAB OPTIONAL I created a table 'zdyu_mail' with the structure wich the same as ISU_ADR6_TAB And I tried to transfer this parameter as following:

  • Hoe kan ik er voor zorgen dat ik weer op mijn gmail kan?

    Ik kan sinds een paar dagen niet meer op de website van gmail komen. Ik heb geprobeerd om de geschiedenis te verwijderen, dat werkte niet. Ik heb geprobeerd google en gmail toe te voegen aan toegestane websites, werkte ook niet. Ik heb mijn instellin