That shouldn't be too complicated, but you will need to write some code.
It doesn't take too long to learn to use a bit of VB...
First, using AdvancedHMI controls, make sure you have the correct MODBUS addresses (this took me some time - PLCs vary widely)
Basically you need to set up several datasubscribers, when there is a change you update your graph:
Private Sub DataSubscriber2_DataChanged(ByVal sender As System.Object, ByVal e As MfgControl.AdvancedHMI.Drivers.Common.PlcComEventArgs) Handles DataSubscriber1.DataChanged,DataSubscriber2.DataChanged, DataSubscriber3.DataChanged, DataSubscriber4.DataChanged
'This fires an event every time your data changes. Use this space to update your graph.
End Sub
Hope this gets you started.
Quinton Wideman
Rolan Inc