How to select different plotMode for superposed channels?

Hello!

Could anyone please help find a solution for having two different plotModes in the same plotter when the channels are superposed (plotter displays channels on top of each other)?

I tried a few things… but got stuck. Maybe I need to look into another class e.g. Pen?

Many thanks! k

(
var data = [[2,2,2],[1.5,1.7,2.8]];
var plotter = Plotter("plotter",Rect(5,5,630,235));
// plotter.plotMode = [\plines,\steps]; //does not work;
//plotter.plotMode = \bars; //works, but changes both;
plotter.value_(data);
plotter.superpose_(true);
plotter.setProperties(
	\plotColor, [Color.red,Color.green],
	//\plotMode, [\points, \plines] // does not work;
);
);