Minor graphical change axis scale markers to multiples of 6

I have a chart whose axis go from 0 to 36.  For some reason any when I choose the uniform spacing marker, I get markers at 0, 5, 10, 15, 20, 25, 30, 35 and 36.  It is, incidentally, NOT uniforms marker spacing.  Uniform spacing would be equal increments between spaces.  What I want is multiple of 6: 0, 6, 12, 18, 24 and 36.  I've been in all the menus associated with this table, and there seems to be no way to make this simple change.

Am I really have to do it programmatically, even if he will never change?

Hi Wildcatherder,

You should be able to set desired axis markers by double-clicking the marker and the edition number. Any value that you specify in this way will fix the spacing on your chart. In your case, I would try to change the Launcher "5" "6".   You can also choose spacing 'Arbitrary' marker and assign any desired, uniform or no markers.

I actually met the same problem before and the answer is not obvious - thanks for asking here, I hope that someone else with this problem will be able to look for the solution more easily.

Tags: NI Software

Similar Questions

  • Can I change by graphical programming axis Label strings?

    I use a chart control that has a Y axis with 8 equal divisions and axis label strings to each division.  I always want to 8 divisions equal with the channels of the label to these divisions, however, the maximum on the graph may change (for example: 0, 10, 20, 30, 40, 50, 60, 70, 80 vs 0, 20, 40, 60, 80, 100, 120, 140, 160).  I can easily set it up through the GUI editor.  I can then allow the strings to Label and set the strings correspond to the values of my 8 divisions.

    However, if the maximum axis value is edited by the user (for example, 80 to 160), is it possible to programattically changes the values that when the Label string axis?  Is pretty simple change it the maximum axial, but this only me half the way there happens.

    Thanks in advance!

    Oh, and I am currently using v8.1 CVI.

    This isn't a simple question!

    Firstly, do you intend to do if the user enters, saying, 125 as the maximum axial value? What of your divisions? And how do prevent you the user to change the minimum value as well?

    On the other hand, I remember, is not a special event that is triggered when the user changes the axis interval.

    I suggest putting a separate button on the control panel to change the scale, have the use of the maximum desired value with PromptPopup or another method of entry, adapt it to a reasonable value and apply it at the graphic level, leaving the grpah to calculate the value of his 8 Division itself.

    That being said, consider that the chart axis labels can be set programmatically using the label strings: see here, section "strings of the axis; the same can be set at design time in the Publisher of the IUR. This can be an option if you decide to go in a different way from the one I proposed.

  • In Labview 8.6 and MAX, I can change a scale for a voltage read the string in a task once the application has been built and installed.

    In Labview 8.6 and MAX, I can change a scale for a voltage read the string in a task once the application has been built and installed on a second PC. Where's the info of the scale which is held?

    Hello

    Once you have built your VI and compiled into an executable file and deployed on another machine, it essentially becomes a file read-only, which means that you will not be able to change the balance in this deployed application.

    Kind regards

    Marcus

  • change of scale of a channel running from the DAQmxSetScaleAttribute task

    Hi all

    simple system configuration: AI channel is configured using OR max and also using a scale that is configured in NI Max.

    Once the system is running, the task of the program started and playback of data acquisition, everything's fine. now I want to do is get the value of a string and reading that the DAQmx reads on the channel by chaning the ordinate at the origin of the linear scale at zero. I tried to get the y-intercept value and the actual value of the existing interception and defining the DAQmxSetScaleAttribute with the new linear value and nothing changes on the sudtracting channel. Possible solutions, I tried shutting down and restarting the task but not clearing and reloading of the task.

    I also tried DAQmxSaveScale, but the value in NImax for interception does not change either.

    is it somehting in the order of calls which must happen, or I can even change the scale on a task without compensation or recharge it the task?

    OK, that's how I got it working again noted that the system is configured using NImax and all the channels to HAVE are in a single task, also an important feature is that I use the DAQmxRegisterEveryNSamplesEvent function. each channel also has its own scale.

    First you need to find is the next shift, you need to recalcualte the max and min to the beach of this channel and save everthing.

    DAQmxGetScaleAttribute ("1Dist", DAQmx_Scale_Lin_YIntercept, & readOffset);  \\get the existing scale value
    stopDAQ();
    GetCtrlAttribute (panelManual, MANUAL_1POS, ATTR_CTRL_VAL, & actualReading);   \\reading off the coast of data acquisition
    newOffset = (actualReading + readOffset) *-1;                                                                     offset \\calcualte
    ERR is DAQmxGetChanAttribute (gDAQTaskHandleAI, "1_Unit_Ext_Pos", DAQmx_AI_Max, & max, NULL);.   cahnnel \\get NIMAX Info
    ERR is DAQmxGetChanAttribute (gDAQTaskHandleAI, "1_Unit_Ext_Pos", DAQmx_AI_Min, & min, NULL);.      cahnnel \\get NIMAX Info
    newMax = max + newOffset;
    Max = newMax;                  ------It will be ediedited what I did was made max an int to get rid of the decimal points
    newMin = min + newOffset;
    min = newMin;                   ------It will be ediedited what I did was made max an int to get rid of the decimal points
                
    DAQmxClearTask (gDAQTaskHandleAI);                                 \\clear the task due to the attached DAQmxRegisterEveryNSamplesEvent will thow errors because it is attached to the task
    DAQmxLoadTask (DAQMX_TASK_TITLE_AI & gDAQTaskHandleAI);
                
    ERR = DAQmxSetScaleAttribute ("1_Act_Ext_Dist", DAQmx_Scale_Lin_YIntercept, newOffset);
    ERR = DAQmxSaveScale ("1_Act_Ext_Dist", "1_Act_Ext_Dist", "", DAQmx_Val_Save_Overwrite |) DAQmx_Val_Save_AllowInteractiveEditing | DAQmx_Val_Save_AllowInteractiveDeletion);
    ERR = DAQmxSetChanAttribute (gDAQTaskHandleAI, "1_Unit_Ext_Pos", DAQmx_AI_Max, max, NULL);
    ERR = DAQmxSetChanAttribute (gDAQTaskHandleAI, "1_Unit_Ext_Pos", DAQmx_AI_Min, min, NULL);
            
    ERR = DAQmxSaveTask (gDAQTaskHandleAI, DAQMX_TASK_TITLE_AI, ' ',)
    DAQmx_Val_Save_Overwrite | DAQmx_Val_Save_AllowInteractiveEditing | DAQmx_Val_Save_AllowInteractiveDeletion);
    DAQmxClearTask (gDAQTaskHandleAI);
    DAQmxLoadTask (DAQMX_TASK_TITLE_AI & gDAQTaskHandleAI);
    GetCtrlAttribute (panelDAQ, DAQ_PANEL_SampPerChannel, ATTR_CTRL_VAL, & sampsPerChan);

    DAQmxRegisterEveryNSamplesEvent(gDAQTaskHandleAI,DAQmx_Val_Acquired_Into_Buffer,sampsPerChan,0,EveryNSamplesCallback,);

    startDAQ();

  • How can I dynamically change the scale of an AIChannel, while the task is running?

    I would like to change the scale of an AIChannel while the task is running.

    Is this possible? How can I do?

    Hi Michael,

    I don't think that this is possible.  If you need this capability, I would acquire the raw tension and applying your own scaling on the set of data as being treatment.

    Kind regards

  • How to change the scale of the Dáil by programming when its reaches the minimum or maximum

    How to change the scale range Max and min of the Dáil when her reached to max or min value. For example: my dail has a max and min scale ranging from 0-15 once my dail value reached 15 I change my max and min beach at 15-30 and 30-45 nationally and also vice versa if I reach 30 it should return to 15-30 instead of 30-45... Then I tried some methods but its not working so can someone please provide a solution.

    Thank you

    Thanks Sabri,

    Vi what you have done is really useful that I can be able to understand the concept of managing my needs. I will attach the vi for reference, as its similar to replace the function of x scroll bar in the chart based on the button. This vi is the version of LabVIEW 2015.

  • Need to change the scale to the default scale my resolution, but the ok button is not visible

    Original title: DPI scaling

    Need to change the scale to the default scale my resolution, but the ok button is not visible

    This help,

    http://answers.Microsoft.com/en-us/Windows/Forum/windows_vista-desktop/want-to-return-DPI-scaling-to-original-96-DPI-but/bd160079-c1e1-47F8-9727-2bc22892dfe0

  • How do I change the scale on the measuring tool

    How to change the scale on the mmeasuring tool! @

    Hi dominicc54357029,

    Open a PDF in Acrobat

    Go to the measure tool

    Click in PDF format and the right context Menu options

    Select the rate of change of the scale

    Set the values

    Click Ok

    Thank you

    Abhishek

  • Impossible to change the scale of a video clip in Premiere Pro CC 2015

    It is RESOLVED through cat w/Adobe. I had to change the rendering engine for 'Software only '. No GPU acceleration. File > project settings > general

    If I change the scale of a video clip or use the "Scale to the size of the image" option in first Pro CC 215, he makes on output pixelated and vertical blue dotted.

    I have NO preference checked setting when you import balance, but I cut the video now so I won't do it again.

    Before reducing:

    Screen Shot 2015-09-11 at 10.00.26 AM.png

    After scaling down (around 75%, but I have tried other percentages with no luck):

    Screen Shot 2015-09-11 at 10.05.36 AM.png

    Used software only for the rendering engine.

  • How can I change the scale when you use the measure tool

    How can I change the scale when you use the measure tool

    With the tool selected, right-click the document, and then select "rate of change of the scale.

  • How can I change the scale when you measure the distance?

    When you measure a distance of 20 m on the pdr-drawing tool says 10 cm measurement. How can I change the scale? The notice said it's possible, but I don't know how I do

    Hi Bandreason,

    How to change you can visit this link: Adobe Acrobat x: change the measurement scale. ROCKY MOUNTAIN TRAINING blog document is for mac but option is the same.

    Kind regards

    Ajlan Huda.

  • How can I change the scale of the column / Spaltenbreite verandern by Maus?

    fehlerIndesign.jpgHello

    How can I change the scale (in the red circle).

    If I change it, I put only new tabs.

    Hallo

    Wie kann ich die Grosse der column change.

    Wenn ich oben in das Fenster Tabulator klicke, fuge

    ICH nur neue Tabstops portals.

    Wenn are will anders ist auch like breast

    andere Losungsmoglichkeiten.

    Wenn ich den Textrahmen verkleinere, die bleibt

    Formatierung und die graue Leiste Position der too equal.

    THX / Danke

    The leader of the tab is to set tabs, not the column widths. In your screenshot, however, I can see that there is a right indent located on the current paragraph, if there is an active text cursor, or the default value if there is no active cursor, as evidenced by the triangle to the left of your red circle. Drag this triangle to the right to reduce the dash (or difficulty settings, which is a better way to go).

  • Need a script to change the ip address of multiple virtual computers

    Hi all

    I have a task to change the ip addresses of multiple ip addresses from DHCP to Static server windows operating systems. I have a powershell script I tried to archieve it work with. However, once the ip address is changed the tcp connection is reset. At this point, the script errors on.

    Now that I'm stuck with powershell, I turned to powercli. I want to address with the string below, but as assistance to refine.

    Get-VMHost $VMHost | Get - vm $VM.name | Get-VMGuestNetworkInterface | WHERE-object {$_.name - eq 'Connect to the Local network'} | Game VMGuestNetworkInterface - static IPPolicy - gateway $VM. Gateway - Netmask $VM.Netmask Ip - $VM.ipaddr - Verbose

    I read all the entries to a CSV file.

    You will appreciate your help.

    See you soon,.

    Bpcue

    Of course, you could do something like that

    foreach($row in (Import-Csv "C:\input.csv" -UseCulture)){
        Get-VMHost $row.Hostname | Get-VM $row.VMname |
        Get-VMGuestNetworkInterface |
        where-object {$_.Name -eq "Local Area Connection"} |
        Set-VMGuestNetworkInterface  -IPPolicy static -Gateway $row.Gateway -Netmask $row.Netmask -Ip $row.ipaddr
    }
    

    This assumes that your CSV file has the following columns

    Host name, VMname, ipaddr, netmask, gateway

    BTW, the cmdlet Set-VMGuestNetworkInterface uses Invoke-VMScript to launch one of the scripts that you find in the folder the PowerCLI installation directory Scripts .

    If you take a look inside one of these BAT files, you will see that it is also using the netsh command

  • Is it possible to change the scale of an object with parallax scrolling in Muse?

    Is it possible to change the scale of an object with parallax scrolling in Muse?

    Hi Cashmoneydonuts,

    You can create an animation for it using edge animate and add it to the Muse.

    The following link might be useful:

    Brighten up the Adobe Muse CC sites with animation effects. Inspired by Adobe Magazine

    Concerning

    Sonam

  • Programmatically change the color graphic intensity c# scale

    I found this thread but does not compile the code in the last example in the last Measurement Studio

    http://forums.NI.com/T5/Measurement-Studio-for-net/change-the-color-map-of-the-intensity-graph-at-ru...

    • IntensityColorMap is unknown

    • don't know what intensityPlot1 is (I have only one IntensityGraph object)

    • intensityGraph.ColorScales [0] does not exist

    I have 2 questions:

    1. What is the best way to change the range of the color worksheet IntensityGraph?

    2. is there a setting to make it all automatic based on Max/Min?  I mean, just the value Max/Mix/number of steps, and she does it all for you?  Maybe there's a setting to set this automatically based on data?

    Thanks in advance

    This example is for the graphic intensity of Windows Forms. In WPF, you boot the Markers collection on the ColorScale assigned to the IntensityGraph with the collection of colors you want. To make the colour scale adjusts automatically to data, set the Adjuster as a value to the property FitExactly and the color scale will update the positions of the markers when data changes.

Maybe you are looking for

  • Console dual browser under Tools

    Hey,. I don't remember what I did but for some time, I had a duplicate of the tab console browser still open under every other developer tools (Inspector, debugger etc...) page There is no 'X' to close, no way to right click, and I can't find it in t

  • Stream x 360 HP: Hp Stream x 360 HDD Upgrade

    Hello I bought Hp Stream x 360 last week and I'm very happy to have bought this tablet pc. Everything is big for this pc except for storage. I wonder if we have the opportunity to upgrade the storage to 64 GB or more? I know that we can use an sd car

  • Director of Windows does not reacknize my mp4 movies

    Director of Windows think my mp4 movies soundtracks r how can I fix?

  • My Mac OSX 10.7 new does not recognize my existing j5750 all-in-one hp?

    Error message: cannot open the HP Installer application because the PowerPC applications are no longer supported.  How can I get the new Mac to recognize the all-in-one?

  • The clock continues to change Windows 7

    I have a HP Pavilion dv7 laptop running Windows 7 Ultimate.  The clock continues to change.  The interesting thing is that only the changes of time, not minutes and seconds.  Any suggestions would be greatly appreciated.