Reading this and this answer I understood that changing the colours of every point is possible, but:
it has to be defined using
set palette model RGB defined ()
, hence if I want 100 different colours I will have to define all of themthe colour of the point is specified just before it is drawn.
My question is, is there a way to avoid all of the above, for example modify my data file as follows:
x y z R G B
1 2 3 0 255 255
5 6 2 255 0 0
And have the according point drawn with the specified colour?