Hi,
I am using fusioncharts to print a realtime (line) chart.
Now I started implementing some alerts like this:
<alerts>
<alert minValue='0.4' maxValue='500' action='callJS' param= "fehler(); "/>;
<alert minValue='-500' maxValue='-0.4' action='callJS' param= "fehler()";/>;
</alerts>
Everything works fine so far, it calls the JS-procedure fehler() as expected.
But I am wondering how to tell the JS-procedure which of my datasets raises the alert. Is this possible?
Jenny