Can we plot both points with smooth csplines in one legend? If we plot them separately two legends generates with separate point and line.
I expect both point and smooth line in one legend as in case of linepoints
Can we plot both points with smooth csplines in one legend? If we plot them separately two legends generates with separate point and line.
I expect both point and smooth line in one legend as in case of linepoints
If you have a current gnuplot (version 5.4), use keyentry
to generate a custom entry for the plot legend.
plot FOO with points lt 2 notitle, \
FOO smooth csplines with lines lt 2 notitle, \
keyentry with linespoints lt 2 title "points + lines"