Hello,
I'm creating a report using something similar to the following classes:
public
class
Point
{
public
double
X {
get
;
set
; }
public
double
Y {
get
;
set
; }
}
public
class
Series
{
public
List<Point> Points {
get
;
set
; }
}
public
class
MultipleSeries
{
public
string
Header {
get
;
set
; }
//There could be any number of these
public
List<Series> Series {
get
;
set
; }
}
public
class
ManyMultipleSeries
{
public
List<MultipleSeries> ManySeries {
get
;
set
; }
}
Basically, the main report will bind to 'ManyMultipleSeries'. This class will have a list of 'MultipleSeries', which are bound to a sub report that contains the chart. The 'MultipleSeries' class could contain any number of 'Series' that need to be displayed in the chart. I could not find any way of creating a dynamic number of series like this in the docs. Thanks for any help.