Files
Basalt2/node_modules/shiki/samples/gnuplot.sample
Robert Jelic 5c15cf28fa Test
2025-02-10 07:12:35 +01:00

21 lines
466 B
Plaintext

set title 'Hello, world' # plot title
set xlabel 'Time' # x-axis label
set ylabel 'Distance' # y-axis label
# labels
set label "boiling point" at 10, 212
# key/legend
set key top right
set key box
set key left bottom
set key bmargin
set key 0.01,100
set nokey # no key
# arrow
set arrow from 1,1 to 5,10
# From https://alvinalexander.com/technology/gnuplot-charts-graphs-examples/