<div dir="ltr">I am working on creating a graph for my ping script. It collects, min, max and average response times. I have added the ::STACK for the AREA after the first AREA is defined. Problem is it adds the next two on top and moves it up a notch, e.g. Min response time is 0.42 (this is measured accurately and on the Y axis it shows it hits 0.42ms) but the next 2, e.g max response times, 0.64ms, it places it on top of the min area and when aligned with the Y axis it shows at 1.08ms, and then average, 0.60ms on top of that and shows aligned at the value of 1.68ms.<div><br></div><div>Is there anyway to get the max and average to start at zero instead of from where the last area ended up at?</div><div><br></div><div>So far I got this as my syntax:</div><div><br></div><div><div>rrdtool.exe graph graph.png </div><div>--title "Daily ICA Port Latency" </div><div>--vertical-label "milliseconds" </div><div>--slope-mode </div><div>--start end-1d -X 0 </div><div>DEF:def_min=latency.rrd:response:MIN </div><div>DEF:def_max=latency.rrd:response:MAX </div><div>DEF:def_avg=latency.rrd:response:AVERAGE </div><div>CDEF:cdef_min=def_min,1000,/ </div><div>CDEF:cdef_max=def_max,1000,/ </div><div>CDEF:cdef_avg=def_avg,1000,/ </div><div>VDEF:vdef_min=def_min,MINIMUM </div><div>VDEF:vdef_max=def_max,MAXIMUM </div><div>VDEF:vdef_avg=def_avg,AVERAGE </div><div>AREA:def_min#54EC48 </div><div>AREA:def_max#EC9D48::STACK </div><div>AREA:def_avg#48C4EC::STACK </div><div>PRINT:vdef_min:%.2lf </div><div>PRINT:vdef_max:%.2lf </div><div>PRINT:vdef_max:%.2lf</div></div><div><br></div><div>thank you,</div><div><br></div><div> Devante</div></div>