I have been trying to plot scatter data with points where the size and colors depend on the input. I have check some others examples and I get to write this, but then I get that error message
plot '-' using 1:2:3:4:5 with labels hypertext point pt 7 ps var lc rgb variable
Too many using specs for this style
What I am missing? I know plot with labels and point size works fine using 4 columns, namely 1:2:3:4, but as soon as I add the 5th input the error appears.
That simply tells you, that you cannot use variable points size and variable colors with the
labelsplotting style.As workaround you can first draw the labels with the hypertext using white as point color, and then the colored points.
Note, that with this solution you must send your data twice if you read from stdin.