To set an image on multiple Plot Areas, follow the steps below:
- On the Block Diagram of your LabVIEW VI, right-click the Mixed Signal Graph indicator and select Create >> Reference.

- From the Application Control Palette, place a Property Node.
- Connect the Mixed Signal Graph Reference to the Reference input of the Property Node.

Note: This image is a LabVIEW snippet, which includes LabVIEW code that you can reuse in your project. To use a snippet, right-click the image, save it to your computer, and drag the file onto your LabVIEW diagram.
- Right-click the Property Node and select Change All to Write.

- Click Property on the Property Node and select Active Plot Area.
- This property allows you to programmatically specify which Plot Area to apply the subsequent properties to.
- Drag the bottom-edge of the Property Node to display another property. Set this one to Plot Images >> Back.
- This property programmatically inserts an image to the background of the Plot Area.

Note: This image is a LabVIEW snippet, which includes LabVIEW code that you can reuse in your project. To use a snippet, right-click the image, save it to your computer, and drag the file onto your LabVIEW diagram.
- Right-click the ActPlotArea property and select Create >> Constant.
- This value represents the Plot Area index that you wish to draw an image on. It is 0 (the 1st Plot Area) by default.

Note: This image is a LabVIEW snippet, which includes LabVIEW code that you can reuse in your project. To use a snippet, right-click the image, save it to your computer, and drag the file onto your LabVIEW diagram.
- From the Graphics & Sound >> Graphics Formats Palette, place a Read PNG File or Read JPEG File VI, depending on which image file type is being used.
- On the Path to PNG/JPEG File input, right-click and select Create >> Constant. Populate this constant with the path to your image file.
- From the Graphics & Sound >> Picture Functions Palette, place a Draw Flattened Pixmap VI.
- This VI converts the image from the specified path into a picture data type in LabVIEW.
- Connect the Image Data output from Read PNG/JPEG File VI to the Image Data input of Draw Flattened Pixmap.

Note: This image is a LabVIEW snippet, which includes LabVIEW code that you can reuse in your project. To use a snippet, right-click the image, save it to your computer, and drag the file onto your LabVIEW diagram.
- Connect the New Picture output from Draw Flattened Pixmap VI to the PlotImages.Back property.

Note: This image is a LabVIEW snippet, which includes LabVIEW code that you can reuse in your project. To use a snippet, right-click the image, save it to your computer, and drag the file onto your LabVIEW diagram.
- Copy and paste the Property Node, and repeat.
- NOTE: ensure that the value wired to ActPlotArea is changed to suit which Plot Area you wish to draw on.
- The example below shows how to draw the same image on 2 Plot Areas.

Note: This image is a LabVIEW snippet, which includes LabVIEW code that you can reuse in your project. To use a snippet, right-click the image, save it to your computer, and drag the file onto your LabVIEW diagram.
- Run the VI and observe that an image is drawn to each of the specified Plot Areas.