Hi,
I Have a question regarding
mbc1.LegendText = ArrayAsString() and mbc1.ChartData = ArrayAs Float()
How to do with a dynamic array ???
I mean, if you don't know each time how many element are in your array list
Example for mbc1.ChartData :
Dim MyList1 as list
Mylist1.add(125)
Mylist1.add(10)
In this case, I would like only 2 values (Mylist.size) in mbc1.ChartData = ArrayAs Float()
and
Dim MyList1 as list
Mylist1.add(125)
Mylist1.add(10)
Mylist1.add(50)
Mylist1.add(200)
In this case, I would like only 4 values (Mylist.size) in mbc1.ChartData = ArrayAs Float()
Is it possible and how ?
Thanks
I Have a question regarding
mbc1.LegendText = ArrayAsString() and mbc1.ChartData = ArrayAs Float()
How to do with a dynamic array ???
I mean, if you don't know each time how many element are in your array list
Example for mbc1.ChartData :
Dim MyList1 as list
Mylist1.add(125)
Mylist1.add(10)
In this case, I would like only 2 values (Mylist.size) in mbc1.ChartData = ArrayAs Float()
and
Dim MyList1 as list
Mylist1.add(125)
Mylist1.add(10)
Mylist1.add(50)
Mylist1.add(200)
In this case, I would like only 4 values (Mylist.size) in mbc1.ChartData = ArrayAs Float()
Is it possible and how ?
Thanks