Question: How do I add my own tickmars labels to axes?

Hello,

I would like to add a date to label of axes in this example. Is it possible in Maple 12?

with(plottools);
with(plots);
with(StringTools);

date := ["03.01.06", "04.01.06", "05.01.06", "06.01.06", "09.01.06"];

pxi := [1494.2, 1496.1, 1498.6, 1509.4, 1527.2];

for i to 5 do
dat := ParseTime("%d.%m. %y", datum[i]);
d[i] := dat:-yearDay
end do;

data := convert(d, list);
graf := zip( (data, pxi) ->[data, pxi], data, pxi);
krivka := curve(graf, style = 'line');
display(krivka);

Is it possible to add date memeber to horizontal tickmars labels?

Thank you very much.

Vladimir

Please Wait...