I am using Gnuplot 5.2 patchlevel 2, and want to make an SVG scatter plot with three different datasets. I cannot change the color of the data points.
set term svg enh size 1800,1800 font "Times,20" rounded background rgb white'
set output 'plot.svg'
set style line 1 lc rgb 'red' pt 7 ps 1 lt 1 lw 2
plot 'data.file' w lp ls 1 ti "Set 1"
The data points remain black, but the lines are (correctly) red. This is something unexpected, it works in the other terminals.