XY chart target line

Using XY chart I plotted compressors daily energy consumption and I need to place a target line in the graph.
The graph uses column render property to plot the data and my dataset contain t_stamp and energy (kWh/day).

Add the target into your SQL query.

SELECT t_stamp, kWh, 2200 AS Target
FROM ...

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

1 Like

Thanks

You're welcome. Don't forget to click the "Solution" button to mark the thread as being solved.