I have 3D-Data, and I plot all Data in a 2D-x-y-Plot (like a view in the x-y-plane into the z-direction). The command looks like:
"plot 'C:\Data.DAT' matrix nonuniform u 1:3 with lines lc rgb "black" smooth unique"
It works fine, and of course all data is plotted in black but I'd like to have a plot with a different color for each 2D-graph. Some kind of an automatic color gradient.
The data structure looks like:
Number of 2D-Graphs /Tab/ x-Axis tick1 /Tab/ x-Axis tick2 ...
y-Axis tick1 /Tab/ Data [1,1] /Tab/ Data [1,2] ...
y-Axis tick2 /Tab/ Data [2,1] /Tab/ Data [2,2] ...
...
Is this possible?