> I want to plot multiple lines filled using Picture Control. My
> question is how to plot multiple lines filled with a colour and the
> lines with black?
> For example, I can plot a triangle giving the XY coordinates of the 3
> points and then using DRAW MULTIPLE LINES.VI. This function plots the
> triangle FILLED with the specified colour. But I want to keep the
> borders as black lines.
First fill it with your color, then outline it with black. Both
operations are done with the same function via a Boolean selector. So,
take your points and call the polygon once to fill with the fill color,
then call again with the input set to outline passing the same points
and a color of black.
Greg McKaskle