V
Vergassivellaunus
Guest
Hy everybody.
I want to draw a math curve f using SeriesChartType.Line; its argument, n, ranges from 0 to 256.
I set AxisX.Minimum =0 and AxisX.Maximum=256, then:
For n = 0 To 255
me.Chart1.Series(0).Points.AddXY(n, f)
next
and I see its graph and axis x numbered from 0 to 256. Axes x has no phisical meaning, f being a vector.
Now i want to change change axis labels and ticks from 0 to 10 mseconds, leaving all the rest as it is. What have I to do?
Continue reading...
I want to draw a math curve f using SeriesChartType.Line; its argument, n, ranges from 0 to 256.
I set AxisX.Minimum =0 and AxisX.Maximum=256, then:
For n = 0 To 255
me.Chart1.Series(0).Points.AddXY(n, f)
next
and I see its graph and axis x numbered from 0 to 256. Axes x has no phisical meaning, f being a vector.
Now i want to change change axis labels and ticks from 0 to 10 mseconds, leaving all the rest as it is. What have I to do?
Continue reading...