S selvarajan New Member Mar 1, 2012 #1 I want to plot this series of data - 0,10,20,30,100,90,80,50,20 using charts module How to do that? In short how to convert the series into a float array so that I can use it in the following Lines charts command::sign0104: B4X: Charts.AddLineMultiplePoints(LD,i, Array As Float thanks
I want to plot this series of data - 0,10,20,30,100,90,80,50,20 using charts module How to do that? In short how to convert the series into a float array so that I can use it in the following Lines charts command::sign0104: B4X: Charts.AddLineMultiplePoints(LD,i, Array As Float thanks
Erel B4X founder Staff member Licensed User Longtime User Mar 1, 2012 #2 Do you want to create a graph with 9 lines? You can use: B4X: Array As Float(0,10,20,30,100,90,80,50,20) Upvote 0
Do you want to create a graph with 9 lines? You can use: B4X: Array As Float(0,10,20,30,100,90,80,50,20)