Question: Graph X-axis labels

Hi there,

i would like to know, how can i change the x-axis labels of an graph?

Currently i read data from text file in format like this:

0 10

1 11

2 14

3 15

 

This values i plot in a graph with this commands:

averagedValues := readdata("mytextfile.txt", [integer, float]);
plot({averagedValues}, x = 0 .. averagedRowCount)

 

My problem is, that each x value has a date label. So my text file should seem like this:

0 1.1.2013 10

1 1.2.2013 11

2 1.3.2013 14

3 1.4.1013 15

 

Currently, the x-axis labels are 0, 1, 2 and 3 but i need the date labels. How can i do it?

Thanks

Patrik

Please Wait...