Populating a Chart Series through application
I have an application that generates values I wish to pass of to a variable on my report to generate a chart.
Currently I can grow the series via the string manipulation of:
"\"" + sVal + ";\""; where sVal is the value in unicode.
While this does currently work it is causing weird behaviour out of the graph, most importantly it does not sort the data in ascending order. I have scoured the programmers manual but am unable to find documentation on how to programmatically grow a series not as a string but as double,int etc.
If anyone knows the syntax to accomplish said task that would be highly appreciated.