Problem with programmat​ically control histogram color

Hi,
I'm developing a function to display multiple channel histogram. But I can not programmatically control the color. I use XY graph to display, and there's no problem with other type of plots.
Attached is the example vi I use for the test. Please tell me if I make any mistakes.
Inhaler
Attachments:
histogram_colortest.vi ‏38 KB

instead of using plot.color, use the fill/point color.
-Joe

Similar Messages

  • Problem with a table control

    Hi gurus,
    I´ve a problem with a table control. It has 3 columns which one is a checkbox.
    I can fill all fields but in the moment I mark the checkbox this line must be unwritable. How can I do it?
    Thanks for all
    Dani

    Assign a function code to the checkbox column....
    so when u check / uncheck any entry, PAI + PBO will be triggered....
    In the PBO during the loop of table control, check the checkbox field value. if it is 'X', make the row readonly
    by looping at screen and setting screen-input = 0 for rest of the columns.
    like ...
    LOOP AT tc_itab
           WITH CONTROL tc_test
           CURSOR tc_test-current_line.
       module set_row_readonly. " loop at screen and set input = '0' if checkbox is checked...
    ENDLOOP.

  • Problems with synchronizing iCal with iCloud accounts on my Mac Pro

    I have problems with synchronizing iCal with iCloud calender accounts on my Mac Pro runnning OS 10.6.8
    (error message "HTTP/1.1 403 Forbidden" på handlingen CalDAVAccountRefreshQueueableOperation.)
    It works fine on iOS devices.

    Due to lacking hardware driver compatibility i our graphic production environment we can't upgrade to Lion.
    Does that mean that it after the closing of MobileMe is impossible to synchronize calenders to Mac's running OS 10.6.8 ??

  • Is anyone experiencing problems with opening mission control from the desktop.  Running mountain lion with parallels 7 and windows 7

    is anyone experiencing problems with opening mission control from the desktop.  Running mountain lion with parallels 7 and windows 7

    I had been having a similar problem on Lion with Safari pdf files despite downloading the latest Adobe Reader XI.
    I would constantly get the same messages - There was an error opening this document. The file is damaged and could not be repaired. And I would get a blank page when I tried to print the pdf if I tried printing from the Safari web page using File - Print from the top toolbar on my laptop.
    Then I came across the grey Safari lozenge with action icons.
    This allowed me, without downloading the pdf, to print the pdf file direct from the Safari page by using the Print icon on the grey lozenge that appears centrally three quarters down the screen.
    Then I discovered that if I save the pdf using the Save icon from this same grey lozenge on the Safari page I can open and print this pdf version from my desktop.
    I've tested it with a couple of different pdf files and these methods work using the grey lozenge icons but the same pdfs files don't work using File - Save As on the Tool Bar.

  • Problem with the table control BDC in FV60 transaction

    Hi All,
    I got the problem with the table control in FV60 transaction.
    This is working for 900 line items.After 900 line items it is giving the problem like it is 1000th line item.You can post only 999 line items.
    I know we can post only 999 line items,but in my file only 920 line items.
    Please give me solution,if anybody come across this situation.
    Thanks & regards,
    rakesh.

    Hello Rakesh ,
    your file may have only 920 line items , but based on those line items, SAP may create few more  new lines ( based on the clearing recon accounts , inter company transaction ...etc )...
    regards
    Prabhu

  • Problem with Creative Audio Control Panel

    ) Heya, I just bought a SB X-Fi Xtreme Audio and I've encountered a problem with Creative Audio Control Panel. My OS is Win7 x64; I have installed the newest drivers for SB. The problem is that I can't set my setup for headphones. I mean I can do that and it's working untill I turn off the PC or restart the system. After that it always sets for 2/2. Speakers. Any ideas how to make this thing to remember my settings the way I want it's Thanks!

    - The problem seems to be fixed Here's the solution for my card: <a rel="nofollow" target="_blank" href="http://forums.creative.com/t5/Sound-Blaster/SB-P7X-Series-Support-Pack-2-5-02-06-200-AudigySE-Value-LS/m-p/5493" title="Linkification: http://forums.creative.com/t5/Sound-Blaster/SB-P7X-Series-Support-Pack-2-5-02-06-200-AudigySE-Value-LS/m-p/5493"]http://forums.creative.com/t5/Sound-Blaster/SB-P7X-Series-Support-Pack-2-5-02-06-200-AudigySE-Value-LS/m-p/5493[/url]

  • Problems with the items (control) in forms 9i (Re)

    Hello,
    I write this problem in a other post and but don't have any feedback about it(So I will give another try:-) )
    The problem that I will describe don't happen all the time and is very rare but I want to know if it's a normal bug of forms or something more special of our PL/SQL code...
    So here we are.
    Is there others developpers here that have problems with the mouse cursor of the user that seems to be "jammed"(blocked, trapped) in a text item (or another control, like a list item). When this problems happen, the user can't go on another field of the forms with his mouse cursor(Mouse click), the only thing that can resolve that is to refresh the page with Internet Explorer, and after that, he is free to go on another field of the forms.
    This problem is very rare but happens sometimes.
    Thanx in advance!

    Hi,
    This problem is due to failuer of navigation of mouse cursore. For more specific solution can you give the error message and error code, So that we can have exact picture. Waiting for error code......

  • Problem with a Table Control Scroll Down.

    Hi,
    I´m working with a table control in which I select one of the many lines the table contains and I move it into a structure, I delete the data of the table control internal table and I move the selected line back into the internal table to show only that record. My problem is the following:
    Whenever I have to scroll down to select a line, the selected line doesn´t appear afterwards. I believe that it´s because the scroll bar disappears and keeps on showing the line where the record I selected used to be and because the selected record is added in the fist line of the TC.
    Is there any way of avoiding the disappearrance of the vertical scroll bar? Or how can I show the record added in the first line if the TC only displays the position where the selected record used to be?
    This is the logic I use to show the single record.
      READ TABLE TI_ASIGLOT WITH KEY PUSH = 'X'.
      IF SY-SUBRC = 0.
        MOVE-CORRESPONDING TI_ASIGLOT TO ST_ASIG.
        CLEAR TI_ASIGLOT.
        REFRESH TI_ASIGLOT.
        MOVE-CORRESPONDING ST_ASIG TO TI_ASIGLOT.
        ST_ASIG-CPEND = ST_ASIG-GAMNG.
        MOVE ST_ASIG-CPEND TO TI_ASIGLOT-CPEND.
        APPEND TI_ASIGLOT.
    Thank´s and regards.
    Lucila

    Well, I´m going to anwser my own question. The problem was that in my TC the top field value was the line number of the record I've selected. So the only thing I had to do to fix it was to asign 1 to the field TC-top_line inside the form where I select the record.
      READ TABLE TI_ASIGLOT WITH KEY PUSH = 'X'.
      IF SY-SUBRC = 0.
        MOVE-CORRESPONDING TI_ASIGLOT TO ST_ASIG.
        CLEAR TI_ASIGLOT.
        REFRESH TI_ASIGLOT.
        MOVE-CORRESPONDING ST_ASIG TO TI_ASIGLOT.
        ST_ASIG-CPEND = ST_ASIG-GAMNG.
        MOVE ST_ASIG-CPEND TO TI_ASIGLOT-CPEND.
        APPEND TI_ASIGLOT.
        W_INI = 1.
      ELSE.
        MESSAGE I889(100) WITH TEXT-T07.
        EXIT.
      ENDIF.
    z_result-top_line = 1.
    (z_result is my TC )
    Best regards,
    Lucila

  • Problem with SAP Script (Control Commands)

    Dear friends,
          I am facing one problem withg control commands. When i use <b>PROTECT.....ENDPROTECT</b> with <b>VAR type</b> window then it is not working instead i use with <b>MAIN type</b> window it is working fine. Another problem with <b>BOX command</b> when i use with <b>MAIN type</b> window then it is not working but when i use with VAR type window then it is working fine. SO i am little bit confused that is there any relation between control commands and window type?
    THanks & Regards,
    Bhavin

    Hi,
    There is no restriction to use any control commands on any windows.
    The SAP doesnt give any error, but the point of using Protect Endprotect in windows other than main window doesnt apply.
    Only main window carries from one page to another. So in order to print certain lines in a single page we use this control command.
    Regarding BOX command it works fine on any window.
    Thanks and Regards.
    Lavanya.

  • AdvancedDataGrid problem with programmatically adding a column

    Hi everybody,
    I have a Problem with adding columns programmatically to a AdvancedDataGrid. The code:
    var cols:Array = thisDataGrid.columns;
    cols.push(dgc);
    thisDataGrid.columns = cols;
    does create a column, adds it to the cols array, bot the last code line has no effect. The cols wont be found in the thisDataGrid.columns property...
    What could be the problem? I'm working with a test license, and on the advanceddatagrid the watermark shows up. Could this be a problem?
    Thanks for help!
    Markus

    As the columns property of an adg is bindable, you could try to bind it to an array and afterwards, add columns to that array:
    AS:
    [Bindable]
    private var adgCols:Array = new Array();
    private function addCol():void
                    var myCol:AdvancedDataGridColumn = new AdvancedDataGridColumn();
                    myCol.headerText = "test";
                    myCol.dataField = "v1";
                    adgCols.push(myCol);
    MXML:
    <mx:AdvancedDataGrid id="adg" designViewDataType="flat" columns="{adgCols}"/>
    This helps?
    Dany

  • MSI P55-GD65 - Problem with automatic fan control.

    Hello.
    I wish to share story of my fan speed controller.
    Lately I've upgraded my machine to modern specs (look at signature) and I was quite happy about that.
    It worked flawlessly for about week.
    My H/W Bios settings was - CPU Smart Fan Target = 60°C and minimal fan speed 50%.
    I was amazed how nicely GD65 maintained between heat and speed.
    Yesterday, I've noticed that my fan is really quiet all the time, even when gaming (before it accelerate speed while hardcore gaming settings). I was quite content about that, until my computer crashed due to overheating while playing Battleforge match.
    After reboot I've ran Intel BurnTest and HWmonitor. OH my, what was my surprise when I saw that fan speed is always 50% and do not speeds up when cores are heating up!
    I started to checking things out. What I've discovered:
    -(CPU Smart Fan ON) Fan is always at minimal speed given in BIOS. It doesn't accelerate even if CPU is burning.
    -(CPU Smart Fan ON) Fan speed cannot be controlled by any program (like SpeedFan).
    -(CPU Smart Fan OFF = 100% fan speed) Fan speed CAN be controlled by program like SpeedFan, which saves me from fan buzzing.
    I've try to fix that by:
    -Checking cables.
    -Clearing CMOS.
    -Updating BIOS to 1.6.
    -Praying.
    And still nothing.
    My conclusion:
    Fan speed cannot be change when Smart Fan is on, it locks fan speed at minimal speed given in bios.
    Now I just hoping that this is somehow stock fan fault, new Zalman CNPS 10X QUIET is in delivery.

    No problem here with Target 55° and Speed 37.5%.
    Fan runs at 1330 below 58° and 2050 above which is max.
    The CPU is running at 3050 MHz because of XMP 'overclocking'
    Have reverted to BIOS version 1.3, due to XMP problems with other versions.

  • Problem with ADE 2.0, Nook Color

    We're having problems with an ePub exported from InDesign CS6 (v8.0.1). It seems to crash on Nook Color (
    Nook Color Model BNRV200 Software Version: 1.43), Adobe Digital Editions v2.0 (both Mac and Windows), and the culprit may be black & white TIF files that InDesign exports as .PNG files. Has anybody seen anything like this before? Crash reports follow, for those that can use them; I can add complete crash dumps if needed:
    Mac (ADE 2.0):
    Process:    
    Adobe Digital Editions [9247]
    Path:       
    /Applications/Adobe Digital Editions 2.0.app/Contents/MacOS/Adobe Digital Editions
    Identifier: 
    com.adobe.adobedigitaleditions.app
    Version:    
    2.0 (1)
    Code Type:  
    X86 (Native)
    Parent Process:  launchd [381]
    Date/Time:  
    2013-02-14 14:09:31.447 -0500
    OS Version: 
    Mac OS X 10.7.5 (11G63)
    Report Version:  9
    Crashed Thread:  0  Dispatch queue: com.apple.main-thread
    Exception Type:  EXC_BAD_ACCESS (SIGBUS)
    Exception Codes: KERN_PROTECTION_FAILURE at 0x0000000000000000
    Windows (ADE 2.0):
    Log Name: 
    Application
    Source:   
    Application Error
    Date:     
    2/14/2013 3:51:40 PM
    Event ID: 
    1000
    Task Category: (100)
    Level:    
    Error
    Keywords: 
    Classic
    User:     
    N/A
    Computer: 
    Ryan-PC
    Description:
    Faulting application name: DigitalEditions.exe, version: 2.0.0.0, time stamp: 0x5058357c
    Faulting module name: rmsdk_wrapper.dll, version: 0.0.0.0, time stamp: 0x5058356c
    Exception code: 0xc0000005
    Fault offset: 0x00150ffd
    Faulting process id: 0x%9
    Any help would be appreciated.

    I have seen errors not quite the same, but maybe related.
    Random (as far as I have identified) books will not work on my Bookeen Opus.
    Sometimes the book just won't display, sometimes the Bookeen jumps back to a higher level menu, and a couple of times the Bookeen crashed completely.
    Being a much more basic device than your Nook, it doesn't give any details about what it thinks the error is.
    I've never been that keen on any of the books involved, so just moved onto another book.
    Next time I find one I'll have a look and see if it could be related.

  • Y 70-70 screen : problems with the black and white colors

    Hi all, I just bought a Lenovo Y70-70 and already encountered several problems with the screen :- I had to change the notebook twice because of clearer zones on the black and because of dead pixels- The model I have now still presents irregularities in the black : if the screen is black, I can still see a few clearer zones on it, especially (but not exclusively) on the edges- concerning the white, I am a bit disappointed too : this color present zones that are sometimes ok, sometimes more yellow. Even if it is subtle, I nevertheless particularily see this effect when reading or typing, due to an optical effect that amplifies the phenomenom when text is displayed which tires my eyes. I also see it on colors like beige or grey. As I use this computer to play but also to work, it is uncomfortable. What I would like to know is if these problems are inherent to the screen, or if it is a defect. What should I do ? Did other people encounter the same problems ? I didn't find any setting to improve it. I found that these problems may be link to these, reported on the Y50-70 :- https://forums.lenovo.com/t5/Lenovo-P-Y-and-Z-series/Y50-Yellow-Dark-Yellow-Screen-Calibration/td-p/1868613- http://www.amazon.com/gp/customer-reviews/RCQNONXIKJJ5D/ref=cm_cr_pr_viewpnt?ie=UTF8&ASIN=B00MCJQ6MI#RCQNONXIKJJ5D Othewise this notebook is OK, playing with it is a real pleasure. Thank you for your answer,S.

    Installation of Mavericks is the culprit here. Lightroom versions 4.4 and earlier are not fully compatible with OS 10.9.x. There will be no more updates to Lightroom version 4.x so the only fix is to upgrade Lightroom to 5.0 or later or reinstall an older OS on Mac.

  • Y70-70 screen : problems with the black and white colors

    Hi all, I just bought a Lenovo Y70-70 Touch and already encountered several problems with the screen :- I had to change the notebook twice because of clearer zones on the black and because of dead pixels- The model I have now still presents irregularities in the black : if the screen is black, I can still see a few clearer zones on it, especially (but not exclusively) on the edges- concerning the white, I am a bit disappointed too : this color present zones that are sometimes ok, sometimes more yellow. Even if it is subtle, I nevertheless particularily see this effect when reading or typing, due to an optical effect that amplifies the phenomenom when text is displayed which tires my eyes. I also see it on colors like beige or grey. As I use this computer to play but also to work, it is uncomfortable. What I would like to know is if these problems are inherent to the screen, or if it is a defect. What should I do ? Did other people encounter the same problems ? I didn't find any setting to improve it. I found that these problems may be linked to these, reported on the Y50-70, supposing the screens of both models are the same (which I don't know) :- https://forums.lenovo.com/t5/Lenovo-P-Y-and-Z-series/Y50-Yellow-Dark-Yellow-Screen-Calibration/td-p/1868613- http://www.amazon.com/gp/customer-reviews/RCQNONXIKJJ5D/ref=cm_cr_pr_viewpnt?ie=UTF8&ASIN=B00MCJQ6MI#RCQNONXIKJJ5D Othewise this notebook is OK, playing with it is a real pleasure. Thank you for your answer,S.

    There can be several things that could effect your issue. If you are using a color calibration device, it may change your white balance. Check and verify that you really are using pure white when filling, a value of 255, 255, 255 thats red, green, and blue. Check and see what color mode you are in, are you in 8 bit, 16 or 32 bit. Are you in RGB, CMYK, or other color mode.
    I am sure there are a few other things, that I haven't thought of at the moment that can effect your issue.
    The next question is what do you mean by black and white? or should I say how did you make it that way. Was it already a black and white (grayscale)? or did you convert it in photoshop and if so how. The reason I ask is there are more than one way to convert a color image to black and white and how you do it will effect the final outcome.

  • Problems with bill copying control and materials with variant configuration

    Hi experts,
    I have a problem with a bill copying control and the way that my customer is trying to create and print the Bill (VF01).
    Let me explain...They have in a Sales Order a material with variant configuration per position, each one can have many characteristics. This characteristics must be printing on the billing document, creating different bills 'coz the max. lines number is 18, so the bill must change page per material-characteristics.
    Example:
    Max. Number Lines = 3
    Position 10      
    Material A     
         -Characteristic A
         -Characteristic B
         -Characteristic C     (Bill 1) 
         -Characteristic D
         -Characteristic E
         -Characteristic F     (Bill 2)
    Position 20
    Material B     
         -Characteristic A     (Bill 3) counting characteristics upside
         -Characteristic B
         -Characteristic C
         -Characteristic D     (Bill 4)
    I created on Tx VOFM (Data Transfer-Billing documents) a routine trying to control this jump, but my problem is when I'm creating the Bill document (VF01) this work only by position, the debugging enter per position.. so I don't have any control to tell the program must count the characteristics and create another bill.
    So... Somebody can help me..or have any idea to solve this problem.....
    Thxs a lot!!!!
    Diego Helfer

    HI Diego
      For our coming assignment, we do have similar sort of situation. Currently we are in Requirements Gathering phase.
      Though we do not have Variant Configuration in place, we do have restriction for no..of items to be used for printing in Billing Documents.
      Current proposal is that we will restrict at Sales Order Creation. If the number of items are increasing, we will restrict saving the document and loading has to be done again. As itz better to restrict at initial phase.
      Our schema is One Sales Order -> One Delivery -> One Billig Document.
       Will post if we can manage to acheive some other way and do request you the same.
    Kind Regards
    Eswar

Maybe you are looking for

  • BIS activation troublesho​oting and service books

    I have a verizon BB8830(unlocked) am on Airtel and BIS worked fine some 6 months back.But now BIS has stopped working when activated,I wiped then device and tried OS update still nothing and it can no longer receive service books fro my carrier inclu

  • Object not showing up in session after I set it.

    I'm running some code that goes through an array of possible forms that could exist in the session. It attempts to pull each form out of session. If the form does not exist then it declares the form and puts it in session. The problem is that after I

  • MIR7 - Park Invoice

    Hi, We often park invoices as the business is very slow in doing goods reciepts.  When we enter the PO number in MIR0 we get a message that says there is no selectable items, so we swtich to parking.  The PO number stays in the PO field but the line

  • Changing A Sequence Start Time To Zero

    I have had to cut an intro portion of a sequence and am now left with a 15-second gap at the beginning. I would like to set where the video starts to zero without 'Ripple Delete' because I have lots of timeline Encore markers that would not ripple wi

  • Have got image tags in RSS and still no images

    HI , I have recently started 3 podcast 2 of which are now available on iTunes. I have followed instructions I have found to add an image to the podcast and it is still not doing it ,  I have included a link to all RSS feeds below AFS Weekly ( Been on