# code-block-pro/1.27.5/build/shiki/samples/gnuplot.sample

Code Block Pro – Beautiful Syntax Highlighting, version 1.27.5. 21 lines.

- Page: https://pluginprobe.com/plugins/code-block-pro/1.27.5/code/build/shiki/samples/gnuplot.sample
- Raw: https://pluginprobe.com/plugins/code-block-pro/1.27.5/raw/build/shiki/samples/gnuplot.sample
- Modified: 2023-09-03T01:04:34+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/code-block-pro/1.27.5/code/build/shiki/samples/gnuplot.sample#L10-L20`.

```
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/

```
