I have a simple line chart report, and what I'd like to do is split the data across multiple charts.
I'm using an ObjectDataSource which returns a list of class objects with relevant fields: SampleTime, Value.
The chart uses SampleTime as the category and Value as value.
The samples come in at 30 minute intervals, but the charts need to be instanced by date; so two days of data would be 96 data points which would split over two charts. The range of days in the data is arbitrary so it might be 2 days data or it might be 31.
The best I've managed so far is to split the data into different coloured lines on the one chart by adding SampleTime.Date as a series group, but I feel there must be a way to have an arbitrary number of charts on the report, one for each day. In an ideal world the individual charts would populate multiple charts to one report section.
Anyone have any insight or examples to share? I've included an image below that may clarify what I'm looking for.