I need to show a bar graph having error login count from different IPs over time.
User wants me to show the columns in red where the login count is => 6
For login count < 6 columns in green.
How can I achieve this, kindly help.
Bar graphs display a number of series of values. Each series can be a different colour. If you split your results up so that for each ip you have counts greater than 5 and another one for counts less than 6, you could then colour them differently. You can't change the colour of the series midway through
Short answer: it can't be achieved in the way you want (or rather your user wants)
Thanks for the help @ITWhisperer