Hi All,
I have the following structure for a report data source:
public
class
ReportData {
public
List<DataPoint> Readings {
get
;
set
;}
}
public
class
DataPoint {
public
DateTimeOffset Day {
get
;
set
;}
public
double
Value {
get
;
set
;}
}
I'm not being able to create a column graph that plots this. I'm not sure if groupings are necessary or not, what to use in the series, etc.
I'm using VS2017 designer to design the report. The data source is an object data source of type ReportData