Very simple question: I have two arrays, one which contains time values, and one that contains values of f(t). I want to use XOJO’s native graphing tools for this, could someone provide me with some code that would work. This is what I am doing now which is not working:
Var ds As New ChartLinearDataset(“Sales”, Color.Blue, True, GraphData)
Var ds1 As New ChartLinearDataset(“Sales”, Color.Blue, True, TimeData)
MainGraphDataChart.AddDataset(ds)
MainGraphDataChart.AddDataset(ds1)
1 post - 1 participant