10-11-2019 03:57 AM
I need to limit the 3 points (1,2,3) in a semicircle on right side with the topmost position being 3, middle position as 2 and down most position as 1. Can this be done using only properties? I am not able to do it.
10-11-2019 04:12 AM - edited 10-11-2019 04:20 AM
Hi Neha,
where did you get that control from?
Did you create it on your own?
Do you even know what you are using in your VI?
(Btw. what's the point of this case structure? It's pure Rube-Goldberg…)
You use a picture ring control here: when you want a special behaviour then you need to implement that behaviour in code.
(I advise not to use this picture ring. What's wrong with the slider approach?)
Btw. why did you create one two more threads for the same problem? Please keep related discussions in one thread!
I need to limit the 3 points (1,2,3) in a semicircle on right side with the topmost position being 3, middle position as 2 and down most position as 1.
Use a slider control, set the range to 1…3 and set it's scale to 1 (lowest) and 3 (top):
10-11-2019 05:25 AM
Actually I need to use knob only for visual purpose in my project.
10-11-2019 05:27 AM
It is present in labview in numeric control -> dial.
10-11-2019 05:36 AM
Hi Neha,
@Neha987 wrote:
Actually I need to use knob only for visual purpose in my project.
So what's your problem to use a knob/dial indicator?
10-11-2019 05:58 AM - edited 10-11-2019 05:59 AM
I am attaching an image of the knob which I need. It should slide up and slide down.
10-11-2019 06:03 AM - edited 10-11-2019 06:04 AM
10-11-2019 07:18 AM
Could you please brief what should be changed in scale? When I am changing it its coming with 120 degrees difference between the 3 buttons.
10-11-2019 07:48 AM
10-11-2019 09:46 AM
I find it much easier to manipulate the dial with properties nodes than trying to find the correct pixel to hover the mouse over to get the right cursor so you can finally click the mouse only to have the mouse shift as you click and miss. It can be frustrating at times... maybe I need a better mouse. LOL
The Min and Max values can be changed either through the properties or directly on the FP.
The data type has to be changed through the properties.
Once you have the dial all set up the way you want, you can then delete the code. The dial will maintain it's properties.
Hope this helps!