diff options
author | Johannes Stoelp <johannes.stoelp@gmail.com> | 2024-08-28 00:24:40 +0200 |
---|---|---|
committer | Johannes Stoelp <johannes.stoelp@gmail.com> | 2024-08-28 23:16:36 +0200 |
commit | dfb198cc07f8774e192279b18b4deb5e4275a4d0 (patch) | |
tree | 8cc632be81fb813cffff79435c3dbb0fe31cbde5 | |
parent | dc3c197e2c96184f87d3bfe2638e8e013f7ccd5e (diff) | |
download | notes-dfb198cc07f8774e192279b18b4deb5e4275a4d0.tar.gz notes-dfb198cc07f8774e192279b18b4deb5e4275a4d0.zip |
gnuplot: add grid
-rw-r--r-- | src/tools/gnuplot.md | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/tools/gnuplot.md b/src/tools/gnuplot.md index 90d5807..4daee3a 100644 --- a/src/tools/gnuplot.md +++ b/src/tools/gnuplot.md @@ -21,6 +21,9 @@ set title "the plot" set xlabel "abc" set ylabel "def" +# Grid. +set grind + # Output format, 'help set term' for all output formats. set term svg # Output file. |