Topic
Change Sec to mSec on Xaxis of a graph
Startseite ' Community ' Allgemein ' Change Sec to mSec on Xaxis of a graph
- Dieses Thema hat 3 Antworten sowie 2 Teilnehmer und wurde zuletzt vor vor 19 Jahren, 3 Monaten von Nicolas Beaupré aktualisiert.
-
AutorBeiträge
-
30.01.2006 um 23:32 Uhr #34082Nicolas BeaupréTeilnehmer
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 um 23:32 Uhr #34085Nicolas BeaupréTeilnehmerHi,
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 um 18:28 Uhr #34083Bernhard KantzTeilnehmerYou 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 um 00:23 Uhr #34084Nicolas BeaupréTeilnehmerThanks!
It work fine and I can use it VBA 🙂 -
AutorBeiträge
- Du musst angemeldet sein, um auf dieses Thema antworten zu können.