Topic
Change Sec to mSec on Xaxis of a graph
- This topic has 3 replies and 2 voices and was last updated 19 years, 3 months ago ago by Nicolas Beaupré.
-
AuthorPosts
-
30.01.2006 at 23:32 #34082Nicolas BeaupréParticipant
Hi,
I got datasets wich X-Axis unit is in seconds. I would like to plot them in a graph where the time-Axis of the graph is in milliseconds…
The only way I see is to do a scaling on the Xcomponents values of the dataset, but I want them to stay in seconds…
Is there a way to plot them in mSec without changing the dataset ?
Thanks!30.01.2006 at 23:32 #34085Nicolas BeaupréParticipantHi,
I got datasets wich X-Axis unit is in seconds. I would like to plot them in a graph where the time-Axis of the graph is in milliseconds…
The only way I see is to do a scaling on the Xcomponents values of the dataset, but I want them to stay in seconds…
Is there a way to plot them in mSec without changing the dataset ?
Thanks!31.01.2006 at 18:28 #34083Bernhard KantzParticipantYou don’t need to change the x-values of the data set [b]data[/b].
Create a formula for scaling of the values:
[CODE]
Signal(data.y, data.x * 1000)
[/CODE]
Now you can visualize the new formula instead of the original data set.Alternatively you can scale your data in the diagram.
Open the properties window of the curve in the diagram.
Open the properties page [b]data[/b].
Choose [b]Seperate data sets for X and Y-components.[/b]
Now can insert the X-data set: [b]1000 * data.x[/b]02.02.2006 at 00:23 #34084Nicolas BeaupréParticipantThanks!
It work fine and I can use it VBA 🙂 -
AuthorPosts
- You must be logged in to reply to this topic.