--- src/utils/eoGnuplot1DSnapshot.h.orig	2012-07-26 17:07:38.000000000 -0500
+++ src/utils/eoGnuplot1DSnapshot.h	2023-09-01 18:34:23.000000000 -0500
@@ -58,7 +58,7 @@
                       std::string _filename = "gen", std::string _delim = " ",
                       unsigned _counter = 0, bool _rmFiles = true) :
       eoFileSnapshot(_dirname, _frequency, _filename, _delim, _counter, _rmFiles),
-      eoGnuplot(_filename,"set data style points"),
+      eoGnuplot(_filename,"set style data points"),
       pointSize(5)
   {}
 
@@ -67,7 +67,7 @@
                        unsigned _frequency = 1, std::string _filename = "gen",
                        std::string _delim = " ", unsigned _counter = 0, bool _rmFiles = true ) :
       eoFileSnapshot(_dirname, _frequency, _filename, _delim, _counter, _rmFiles),
-      eoGnuplot(_filename,"set data style points"),
+      eoGnuplot(_filename,"set style data points"),
       pointSize(5)
   {
     handleBounds(_bounds);
@@ -75,14 +75,14 @@
     // Ctor
   eoGnuplot1DSnapshot(eoFileSnapshot & _fSnapshot) :
       eoFileSnapshot(_fSnapshot),
-      eoGnuplot(_fSnapshot.baseFileName(),"set data style points"),
+      eoGnuplot(_fSnapshot.baseFileName(),"set style data points"),
       pointSize(5)
   {}
 
     // Ctor with range
   eoGnuplot1DSnapshot(eoFileSnapshot & _fSnapshot, eoRealVectorBounds & _bounds) :
       eoFileSnapshot(_fSnapshot),
-      eoGnuplot(_fSnapshot.baseFileName(),"set data style points"),
+      eoGnuplot(_fSnapshot.baseFileName(),"set style data points"),
       pointSize(5)
   {
     handleBounds(_bounds);