Sub Globals
'These global variables will be redeclared each time the activity is created.
'These variables can only be accessed from this module.
Private HIChart1 As HIChartView ' It is part of the Layout...
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")
Dim s As HISeries
s.Initialize
Dim d As HIData
d.CsvURL = "https://www.highcharts.com/studies/data.csv"
Log(d.Params)
s.addPoint(d)
HIChart1.addSeries(s)
End Sub