Sub Globals
'These global variables will be redeclared each time the activity is created.
'These variables can only be accessed from this module.
Private sv1 As SparkView
Private sv2 As SparkView
End Sub
Sub Activity_Create(FirstTime As Boolean)
'Do not forget to load the layout file created with the visual designer. For example:
Activity.LoadLayout("Layout1")
sv1.FillType = sv1.FT_NONE
sv1.Data = Array As Float(15,16.5,16.70,17,15,15,15)
sv2.FillType = sv2.FT_DOWN
sv2.Data = Array As Float(0,17,36,52,85,115,135,140,100,130,130)
End Sub