How to set a Target Line in Perspective XY charts

Hello team,

I have an XY Chart component in the Ignition Perspective module, and I need to set a target line on it.

  • Could you please guide me on where I can set the target line and customize its color in the XY Chart properties?

Add an extra series. It only needs to have two points - one on the left side and one on the right.

Alternatively you can have as many points as there are records on the main plot(s). If the data is generated by SQL query then add the target in there:

SELECT t_stamp, trip_time, 102 AS Target
FROM ...

or add a Script Transform on your existing query binding and add in the required column.