Hi @MP10 and Welcome,
Have a look at the following:
http://doc.qt.io/qt-4.8/qmlevents.html
This is similar to Qt C++ signals and slots mechanism and allows transfer of data.
http://doc.qt.io/qt-5/qtqml-syntax-propertybinding.html
This explains how variables/properties can be defined in QML and binded to other properties on same or other pages so that when one changes the other is updated too. In your case you can try binding the numerical values on Tab1 with similar properties on Tab2. Then you can use the corresponding event handler for these properties to update the graph. The event handlers are triggered when a property's value changes.