I have been using Gnuplot to display 3D-mesh graphs (surface graphs) for a while. I am now striving to get Gnuplot 3D-mesh cell values displayed by placing the mouse cursor (pointer) over it. I have seen the cell fourth dimension (color intensity value) can get displayed. Could anybody help?
This is my GNUPLOT code
set cbrange [0.0:.2]
set palette defined (0 'white', 1 'midnight-blue')
set pm3d
set contour surface
set cntrparam levels incremental 0, 50, 1000
set xrange [0:1300]
set yrange [0:1500]
set zrange [0:1000]
set xyplane at 0
set view 9, 88, 2.3
set view equal xy
splot '-' using 1:2:3:4 notitle with lines lw .3 lc rgb 'black'
I appreciate your comments
Javero