jacques masson - 2020-05-06

I am trying to output in .svg a color 3d plot and I get colors on the colorbox but nothing on the points themselves. If I output it in postscript I do see the colors. Any ideas how to build around it to make svg output colors ?
Gnuplot version :

        G N U P L O T
        Version 5.2 patchlevel 2    last modified 2017-11-15 

        Copyright (C) 1986-1993, 1998, 2004, 2007-2017
        Thomas Williams, Colin Kelley and many others

        gnuplot home:     http://www.gnuplot.info
        faq, bugs, etc:   type "help FAQ"
        immediate help:   type "help"  (plot window: hit 'h')

Terminal type is now 'qt'

Code :

reset



offs=0.

set grid

set terminal svg size 600,400 dynamic enhanced fname 'arial'  mousing butt solid 
#set term post enh color

dt=10
do for [t=380:400:dt]  {

    time = t/100.
    dtime = dt/100.

outname=sprintf("out_expi_%1.2f.svg",time)
#outname=sprintf("out_expi_%1.2f.ps",time)
set output outname


unset y2tics

set view 56,222
set xrange [-0.06:-0.06+0.11]
set yrange [0.08:0.19]


set format cb '10^%T'

set logscale cb

set cblabel 'size (m)'

set cbrange [60.e-9:40e-6]

unset ylabel
        print time
        ttt = sprintf('time : %1.2f and accumulated particles since %1.2f', time, time-dtime)
        set title ttt


              splot 'wall_face_sinus.dpm_expi_p60nm' every 2   u 2:3:4:(time>1.6 && $14>time-dtime && $14<time?2./(-log10($8)-2):0):8 w p pt 7 ps var palette not,\
              'wall_face_sinus.dpm_expi_p140nm' every 2  u 2:3:4:(time>1.6 && $14>time-dtime && $14<time?2./(-log10($8)-2):0):8 w p pt 7 ps var palette not,\
              'wall_face_sinus.dpm_expi_p300nm' every 2  u 2:3:4:(time>1.6 && $14>time-dtime && $14<time?2./(-log10($8)-2):0):8 w p pt 7 ps var palette not,\
              'wall_face_sinus.dpm_expi_p2.5um' every 2  u 2:3:4:(time>1.6 && $14>time-dtime && $14<time?2./(-log10($8)-2):0):8 w p pt 7 ps var palette not,\
              'wall_face_sinus.dpm_expi_p5um' every 3    u 2:3:4:(time>1.6 && $14>time-dtime && $14<time?2./(-log10($8)-2):0):8 w p pt 7 ps var palette not,\
              'wall_face_sinus.dpm_expi_p10um' every 15  u 2:3:4:(time>1.6 && $14>time-dtime && $14<time?2./(-log10($8)-2):0):8 w p pt 7 ps var palette not,\
            'wall_face_sinus.dpm_expi_p20um' every 1462  u 2:3:4:(time>1.6 && $14>time-dtime && $14<time?2./(-log10($8)-2):0):8 w p pt 7 ps var palette not

}

Thanks in advance :)