Is there a function to get the curve index of the last point of a curve?
Find more posts tagged with
Sort by:
1 - 4 of
41
The {max(p1w1c1.x)} function will give the maximum value of the x curve, but not the index number. However, I realized that I could just use the indexofmax(p1w1c1.x) rather than .y to get the index of the largest X value, rather than for the peak Y value.
Thanks for idea though Cesar - it did get me to the right answer.
I have not try it but how about using the next templatex function:
{max(p1w1c1.x)}
p1 = page 1
w1 = window1
c1 = curve 1
this should give the max value in the X axis.