I have the following loop in my gnuplot script to iterate over multiple files and draw one graph:
files = system("echo $(ls *.csv)")
plot for [f in files] f using 0:2:xtic(1) with lp ,\
for [f in files] f using 0:2:2 with labels font ',8' offset 1,0.5 notitle "",\
for [f in files] f using 0:2:3 with yerrorbars title ""
For every datapoint a linepoint, a label and a yerrorbar is drawn.
Is it possible to use the same color for corresponding linepoint, yerrorbar and label? If yes, how?
thanks!
