I'm learning this linux package, I can't find style information, is it possible to create graphs similar in appearance like this: https://canvasjs.com/php-charts/json-data-api-ajax-chart/
rrdtool graph graph.png \
--start -10m \
--title "CPU Temperature Log" \
--vertical-label "Temperature ºC" \
--width 600 \
--height 200 \
--color CANVAS#000000 \
--color BACK#000000 \
--color FONT#FFFFFF \
--dynamic-labels \
--grid-dash 1:1 \
--font TITLE:10 \
--font UNIT:9 \
--font LEGEND:8 \
--font AXIS:8 \
--font WATERMARK:8 \
--lazy \
--watermark "$(date -R)" \
DEF:cpu_temp=cputemp.rrd:cpu_temp:AVERAGE \
AREA:cpu_temp#FF0000AA:"RPi CPU" \
LINE2:cpu_temp#FF0000
Current guidebook comes out with something like this: image