Get Axis range for 3D Ribbon Plot

When I plot something in a 3D Ribbon Plot with autoscale enable, the scale ranges (minimum and maximum) are automatically set in the proper way.
But after that, I can't read their values.
See the attached example: if I read Axis Range Maximum, I get 10 that is the value tha £D graph had before I plot the data.
Probably I'm missing something...
Vix
In claris non fit interpretatio
Using LV 2013 SP1 on Win 7 64bit
Using LV 8.2.1 on WinXP SP3
Using CVI 2012 SP1 on Win 7 64bit, WinXP and WinXP Embedded
Using CVI 6.0 on Win2k, WinXP and WinXP Embedded
Attachments:
3D Ribbon Plot.vi ‏17 KB

hanrock wrote:
I am the owner of the 3D Plots with the grey decoration. I subscribe the topics related these controls and collect bug/feedback to improve them in the future. Yeah, I create CARs for the bug I read from this forum. Sorry, I didn't standed up saying this is CARed or I cannot fix it for some reason. I dive more.
These controls are built by pure G code. So it has limitation if its sub-components control's property/event is not exported from VI server/event structure or XControl Framework does not support.
For the issue in this thread (range one), it can behave same as native XY Graph. For performance, do you mean it delays the interaction (rotate, click) or plot updates slow. I improved their performance somehow in LV2011. How big your input matrix is and what is the update frequency?
"... and there ws great rejoicing!" [Monty Python, after the minstrals death]
Well that is news to me.
I would like to invite you to post the CAR numbers so that we can track the bugs and fixes.
Simply posting those numbers will go a a long way toward changing my impression of the 3D graph issues. If you keep them secret we will be left to believe the issues are not being addressed, which has been the traditional viewpoint of users outside of NI. The Champions worked to change that attitude and to a large extent I feel the general outlook has been changing due to the public bug list that is no published for various LV versions.
The CAR numbers also give us a handle we can reach for when the apps we deliver to our customers screw up and we have to shrug our shoulders and tell them "When ever NI feels like it."
Trying to help more than I hurt and still fighting for the integrity of LabVIEW,
Ben
Ben Rayner
I am currently active on.. MainStream Preppers
Rayner's Ridge is under construction

Similar Messages

  • Function Module for getting Number ranges between two number

    Hi guys,
    Is there any Function module which provide us the number range between two numbers?
    For Ex:If i give 1 and 10 to FM it must give me 1
    2
    3
    4.....upto 10.
    is there any FM for doing this,but i'm not able to find exact Fm for same.
    I can write small piece of code for getting number ranges, but if i get FM it could save little work.

    Hi
    But why do u need a fm, can't you do it by yourself?
    DATA: FROM_NUMBER TYPE I VALUE 1,
          TO_NUMBER   TYPE I VALUE 15.
    DATA: NUMBER            TYPE I.
    DATA: BEGIN OF T_NUMBER OCCURS 0,
                  NR TYPE I,
              END    OF T_NUMBER.
    NUMBER = FROM_NUMBER.
    DO.
      IF NUMBER <= TO_NUMBER.
        T_NUMBER-NR = NUMBER.
        APPEND T_NUMBER.
      ELSE.
        EXIT.
      ENDIF.
      NUMBER = NUMBER + 1.
    ENDDO.
    LOOP AT T_NUMBER.
      WRITE: / T_NUMBER-NR.
    ENDLOOP.
    Max

  • Multiple Number Ranges for AP Document Type not getting triggered

    Hi all,
    We are posting receivables in the system using BAPI_CTRACDOCUMENT_CREATE. We have huge data of 3.9 million records for which receivables has to be posted. So multiple number ranges has been configured in the system for AP document type.
    The issue is even though multiple number ranges for mass processing are configured in the below location in SPRO, none of them are getting triggered. The number range at the first level on the screen is only getting triggered, due to this it is taking lot of time to post documents. Any help on this?
    Financial Accounting(new)
         Contracts Accounts Receivable and Payables
         BasicFunctions
         Postings and Documents
         Document
         Maintain Document Assignments
         Document Types
         Maintain Document Types and Assign Number Ranges
    Regards,
    Karthick.

    Karthick:
    Mass ranges are only used for FICA parallel mass activities.  For your situation, you can define and assign multiple ranges for individual processing in the same IMG activity.  Those would then be chosen for your mass postings.
    regards,
    bill.

  • How to get cost center ranges for a given company and division...

    Hello Experts,
    Is there a table, BAPI or FM that can get the company or division of a given cost center?
    Currently I am creating cost center ranges in my program but that is not the best way to do it
    since they can always add or delete cost centers. Just like in transaction OKEON wherein you
    can see the cost center ranges for a given company or division.
    Hope you can help me guys. Thank you and take care!

    Hi Viray,
    You can try BAPI 'BAPI_COSTCENTER_GETDETAIL1'.
    You need to pass controlling area and cost center detail to this BAPI.
    It will return the cost center detail in return.
    Hope this helps you.
    Thanks,
    Arun

  • How do I change the visible number range for the y-axis in numbers?

    I have a chart that has a lot of white space because the y-axis starts at zero.I would like the graph to show the range 20-35. How may I omit the range for which I have no data?

    agood,
    You can control Max, Min, number of grid lines, etc. for X and Y axes.
    Here's an example from the Chart template:
    I've boxed the relevant areas.
    Jerry

  • Number range for network is getting skipped

    Hi,
    The number range for network is getting skipped can any one please tell me the object in SNRO or SNUM where i need to maintain the buffer?
    Thanks
    Satish.

    Hi,
    Maintain the buffer to this Object AUFTRAG.
    Adive you search for S-note on buffer maintenence in network order.
    Regards,
    Nag.

  • Get unique value for a range of values from a table

    Please help to identify the sql to get unique value for following scenario
    Table A has 3 columns
    column1 column2 column3

    user7666373 wrote:
    Please help to identify the sql to get unique value for following scenarioUnique combinations of three columns? If so:
    select DISTINCT column1,column2,column3 from A;SY.

  • XY Graph Axis's autoscale but no plot shows?

    I just don't undestand XY Graphs.
    I have folowed the examples, tried the xy graph express vi,  even gone as far as copying and pasting the example vi right into my own program.
    The axis's autoscale but the plot never shows on the graph?

    You only generate one point for each iteration of the large FOR loop and, unlike charts, XY graphs don't keep a history. You might get what you want by double-clicking the "Built xy graph" express VI and unselect "clear data on each call". I don't really use that feature.
    How fast does the loop run? Maybe it's OK to build the x and y array at the loop boundary and only plot at the end of the loop (green insert of image)? FOr continuous update while the loop is running, you could also build the x and y arrays in a shift register (upper part of image).
    Notice that you don't need to do the complicated detour via a 2D array. Simply keep it as 1D array and insert an "array to cluster" for the chart (see image). Don't forget to set the cluster size to 3 by right-clicking on "array to cluster".
    Message Edited by altenbach on 02-12-2007 03:56 PM
    Message Edited by altenbach on 02-12-2007 03:59 PM
    LabVIEW Champion . Do more with less code and in less time .
    Attachments:
    XYUpdate.png ‏33 KB

  • X Axis Ranges - custom XML - it doesnt work

    Hi - I am having difficulty displaying an axes range on the X axis.
    I have a line chart displaying volume data over a 2 month period, and I want to shade saturday+sunday in grey as vertical stripes accross the chart- to indicate that the data points can be safely ignored as non-business hours.
    I am planning to add 52 ranges in the x_axis with minimum=MMDD for Saturday and maximum=MMDD for Sunday to cover a 1 year period.
    Anychart documentation says this is possible: but all of the examples are for the Y axis (which works ok).
    [http://www.valentinois.net/forums/weatherd/anychart/anychart/help/docs/axes-ranges.html|Anychart documentation]
    The chart accepts attributes for the x_axis, but never displays the range.
    My XML looks like this:
    <x_axis> <title enabled="False"/> <labels rotation="0"/>
    <axis_markers><ranges>
    <range minimum="0502" maximum="0503"><fill color="Blue"/></range>
    <range minimum="0509" maximum="0510"><fill color="Blue"/></range>
    </ranges></axis_markers>
    </x_axis>
    </axes>
    Has anyone successfully implemented this?
    Apex 3.1.2 with Anychart3
    Thanks!
    Mark

    Solved; when marking ranges or lines on the X axis; you cannot specify X axis values; only X axis data points (starting with 0). For weekly data, plotted by hour, I shade the first 24 data points for Monday, and then alternate colors for the whole week. Works a treat.
    On the Y axis you can specify ranges (or plot lines) using the Y axis values. This doesn't appear to be documented, and may be a bug, so I hope this is useful to the next person stumpred by this.
    Rgds
    Mark

  • Programmatically change primary and secondary Y-Axis range

    Ok, so the idea is that I have a chart with two different data types on it.  One is plotted on the primary Y-axis on the left side and the other is on the secondary Y-axis on the right side.  Both share the same X-axis.
    How do I change the range seperately for the primary Y-axis and secondary Y-axis?  Whats currently happening is no matter which "Active Plot" or "Y-Axis Index" I select, it only changes the range for the secondary axis.  Any help would be amazing!

    We are going to need to see some code to help with this.  and some clarification sinc a "Chart" cannot have multiple y axes
    Assuming you have an XY Graph this little code demonstrates how to set the scales min and max programatically
    Jeff

  • How to find next number range for project definition in tcode CJ20N

    Hai Experts,
          Please help me 'How to find next number range for project definition in tcode "CJ20N". I was trying in function module NUMBER_GET_NEXT. Is it right function module? If its right what input i need to give for this tcode and for the field project definition?
    Note: I searched in forum before posting, but couldn't find the solution.
    Thanks
    Regards,
    Prabu S.

    Hi,
    For project defination internal number is assigned by system.
    When you saves's project then system allocate one number to project defination, you can view it,
    SE11 >>> table  PROJ >> Click on contents >>> execute,
    here you will get your project defination & number is assigned to project defination.
    kapil

  • Excise invoice number range for Depot

    Hi All,
    Pls guide me to assgin excise invoice number range for Depot.
    My client asking me to assgin domestic and export excise number range for Depot.
    pls clarrify:
    What are the purposes of the number range objects  J_1IEXCLOC and J_1IEXCINV? In which conditions 
    1. either of the two, or  2. both the objects should be used?
    Thanks,
    Muru..

    Dear Murugan
    Please search in forum you can have ready made answers available.
    System will always assigns one number for excise(where user can use Official document number) also an internal number for statistical purpose.(internal number for excise)
    You can see all these numbers in tables J_1IEXCHDR/J_1IEXCDTL.
    Just enter one excise Invoice number in the above tables & compare these with the objects J_1IEXCLOC/J_1IEXCINV...you will get more clarity
    Hope this helps.
    Phanikumar

  • Excise Number Range for Object J_1IEXCLOC

    Dear All ,
    I am having one issue regarding excise number range for object J_1IEXCLOC and sales group : 41 Domestic. i have already maintained number range for 2009 is 0000000001 to 0000000300. Now the range is exceed and the new excise invoice is created with number 0000000001. Now i am confused if i will maintain range upto 0000000500 for 2009 then what will be the new  invoice number, whether it will be 0000000002 or 0000000301.
    Pls. Give me some suggestion, What should i do now for the number range to be in continuation.
    Regards,
    Swapnil Vaidya

    >
    swapnil vaidya wrote:
    > Dear All ,
    >
    > I am having one issue regarding excise number range for object J_1IEXCLOC and sales group : 41 Domestic. i have already maintained number range for 2009 is 0000000001 to 0000000300. Now the range is exceed and the new excise invoice is created with number 0000000001. Now i am confused if i will maintain range upto 0000000500 for 2009 then what will be the new  invoice number, whether it will be 0000000002 or 0000000301.
    >
    > Pls. Give me some suggestion, What should i do now for the number range to be in continuation.
    >
    > Regards,
    >
    > Swapnil Vaidya
    It will be 2 and not 301. This is a flaw with CIN. All transactions take place by means of internal numbers and are stored in CIN transaction tables. Hence when the range gets exhausted, the number gets reset to the beginning, yet there is no error because internal number, which is the primary key, is different.
    To solve your problem. Go to SNRO and provide the object J_1IEXCLOC and click on status. Change the status to 300 and continue with your transaction.
    Regards,
    Aroop
    PS: Your question is more relevant for SD than MM.

  • How to select range for dater in BAPI_DOCUMENT_GETLIST2

    Hi All
    I have following problem with this FM BAPI_DOCUMENT_GETLIST2. I was looking a lot on different forums but I cannot find answer which corresponds to my problem.
    I have in DMS saved files for our customer and Iu2019m using object linking as
    Objlinkselection-DOKOB  =  KNA1
    Objlinkselection- OBJKY   = KUNNR.
    It works well, but it takes all doc from beginning.  Iu2019d like to make selection that final table documentdata is in range of defined range date with values 20111201 to 20111231
    Now I have to select all documents for this customer and after that I have to make loop to get correct files. And it takes a huge time and in a few years it will collaps
    LOOP AT LT_DOCUMENTDATA INTO <FS> WHERE CREATEDATE IN  rn_DATE.
    ENDLOOP.
    Any hint how to make this faster? 
    Just to avoid any misunderstandings, I'm not asking on loop speed but how to select by FM less rows based on create date.
    Thank a lot fo any hint
    Petr

    Hello Deepak,
    Thanks a lot for your answer. I have read this thread already, but it is not realy what I need. But anyway in the night I have found solution.
    I will go through table DRAW where I will get just DOCNUMS for current date range.
    Than I will select correct rows from table DRAD for selected KUNNR.
    Final set od DOCNUMS I will use as selection criteria for BAPI.
    It should help, now I go to try it.
    Thansk anyway
    Petr

  • Error: Number range  for object RESB does not exist

    Hi
    I'm trying to convert a planned order (to purch requisition) partially via trxn code MD04. Upon saving I get the above error msg. The complete text of msg is as  follows. I've maitained the number ranges of all the objects specified in this error msg. Can somebody explain on how to overcome this problem?
    Many thanks
    BE
    Error Msg Text:
    Number range  for object RESB does not exist
         Message no. 61501
    Diagnosis
         The system cannot create a document for an MRP element if no number
         range or interval has been maintained in Customizing of MRP or if t
         number range you have maintained is not allowed.
         Below is a list of MRP elements that are affected:
         Number range object  MRP element
         PLAF                 planned order (operative oder simulative)
         EBAN                 purchase requisition
         RESB                 dependent requirements
         MDSM                 simulative dependent reqmts (long-term plannin
         MDTB                 MRP list
    Procedure
         Check the number ranges in Customizing. If you do not have the necessa
         authorization, please get in touch with your systems administration.

    Hi
    Thanks for the reply. But I have maintained the number ranges for matl. reservations/dependant requirements at OMI2. Here is the screen shot..Do find anything wrong with it? Pl advice.
    NR Object                             MRES/DREQ
    No.                          From Number            To Number          Curr Number          Ext
    01                           0000000001               8999999999           380                    blank
    02                           9000000000               9500000000           blank                  checked
    RB                          9500000001               9999999999           blank                  checked
    Number ranges for the plants are assigned to 01 (0000000001 to 8999999999).
    thanks
    BE
    Edited by: Brian Elfie on Jan 10, 2008 11:27 AM

Maybe you are looking for