Tomcat
That seems to happen when using a 24 hour Time Template probably due to a divide by 0 error caused by a series of bars with High equal to Low.
Try adding the following after line 41 if((MaxH-MinL)==0)
return;
I think that should fix the problem
Alex
Alex, could you tell me in which line I can change the color of the
sky blue line which crosses the red and white histogram in a dark blue. I only see the colors of the histogram.
Tomcat
The color is defined in line 7 in the following statement setDefaultBarFgColor(Color.RGB(153,204,255), 1);
If you want it dark blue then replace it with setDefaultBarFgColor(Color.navy, 1);
Alex
Comment