Blob Blame History Raw
#
# Test case of multiplot containing more than one palette
# (for debugging)
#
set pm3d map
set multiplot layout 2,1 \
    title "Test ability to display multiple palettes within a single multiplot"
set title '10 gray levels'
set palette gray
set palette maxcolors 10
splot x*x
set title '2 colors'
set palette color
set palette maxcolors 2
splot x
unset multiplot
pause -1 "Hit return to continue"

reset